isn/.vscode/tasks.json

68 lines
2.0 KiB
JSON

4 years ago
{
"version": "2.0.0",
"tasks": [
3 years ago
{
"label": "restore",
"command": "dotnet",
"type": "process",
"args": [
"restore",
"${workspaceFolder}/nuget-host.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary",
"--ignore-failed-sources"
],
"problemMatcher": "$msCompile"
},
4 years ago
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/nuget-host.csproj",
"/property:GenerateFullPaths=true",
4 years ago
"/consoleloggerparameters:NoSummary",
"/restore"
4 years ago
],
"problemMatcher": "$msCompile"
},
{
"label": "publish",
"command": "dotnet",
"type": "process",
"args": [
"publish",
"${workspaceFolder}/nuget-host.csproj",
"/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",
4 years ago
"/property:GenerateFullPaths=true",
"/restore"
4 years ago
],
"options": {
"env": {
"ASPNETCORE_ENV": "Development"
}
},
"problemMatcher": "$msCompile"
}
]
}