Tasks json file for .NET Core apps
{ | |
"version": "2.0.0", | |
"tasks": [ | |
{ | |
"label": "build", | |
"command": "dotnet", | |
"type": "process", | |
"args": [ | |
"build", | |
"${workspaceFolder}/{appPath}/{appName}.csproj", | |
"/property:GenerateFullPaths=true", | |
"/consoleloggerparameters:NoSummary" | |
], | |
"problemMatcher": "$msCompile" | |
}, | |
{ | |
"label": "publish", | |
"command": "dotnet", | |
"type": "process", | |
"args": [ | |
"publish", | |
"${workspaceFolder}/{appPath}/{appName}.csproj", | |
"/property:GenerateFullPaths=true", | |
"/consoleloggerparameters:NoSummary" | |
], | |
"problemMatcher": "$msCompile" | |
}, | |
{ | |
"label": "watch", | |
"command": "dotnet", | |
"type": "process", | |
"args": [ | |
"watch", | |
"run", | |
"${workspaceFolder}/{appPath}/{appName}.csproj", | |
"/property:GenerateFullPaths=true", | |
"/consoleloggerparameters:NoSummary" | |
], | |
"problemMatcher": "$msCompile" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment