{ "version": "2.0.0", "tasks": [ { "label": "restore", "command": "dotnet", "type": "process", "args": [ "restore", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary", "--ignore-failed-sources" ], "problemMatcher": "$msCompile" }, { "label": "build", "command": "dotnet", "type": "process", "args": [ "build", "/p:Configuration=Debug", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary", "--ignore-failed-sources" ], "problemMatcher": "$msCompile" }, { "label": "publish", "command": "dotnet", "type": "process", "args": [ "publish", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary" ], "problemMatcher": "$msCompile" }, { "label": "test", "command": "dotnet", "type": "process", "options": { "env": { "ASPNETCORE_ENVIRONMENT": "Development" } }, "args": [ "test", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary" ], "problemMatcher": "$msCompile" }, { "label": "launch-dotnet", "command": "dotnet", "type": "process", "args": [ "${workspaceFolder}/bin/Debug/netcoreapp2.0/nuget-host.dll" ], "problemMatcher": "$msCompile" }, { "label": "watch", "command": "dotnet", "type": "process", "args": [ "bin/Debug/netcoreapp2.0/nuget-host.dll", "/property:GenerateFullPaths=true", "/restore" ], "options": { "env": { "ASPNETCORE_ENVIRONMENT": "Development" } }, "problemMatcher": "$msCompile" } ] }