isn/.vscode/tasks.json

82 lines
2.3 KiB
JSON

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