isn/.vscode/tasks.json

97 lines
2.8 KiB
JSON
Raw Normal View History

2021-04-08 02:03:17 +01:00
{
"version": "2.0.0",
"tasks": [
2021-04-10 14:11:09 +01:00
{
"label": "restore",
"command": "dotnet",
"type": "process",
"args": [
"restore",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary",
"--ignore-failed-sources"
],
"problemMatcher": "$msCompile"
},
2021-04-08 02:03:17 +01:00
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
2021-05-10 21:32:29 +01:00
"src/nuget-host",
"/p:Configuration=Debug",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary",
"--ignore-failed-sources"
],
"problemMatcher": "$msCompile"
},
{
"label": "buildcli",
"command": "dotnet",
"type": "process",
"args": [
"build",
"src/nuget-cli",
2021-04-25 12:12:50 +01:00
"/p:Configuration=Debug",
2021-04-08 02:03:17 +01:00
"/property:GenerateFullPaths=true",
2021-04-08 03:08:20 +01:00
"/consoleloggerparameters:NoSummary",
2021-04-11 22:22:37 +01:00
"--ignore-failed-sources"
2021-04-08 02:03:17 +01:00
],
"problemMatcher": "$msCompile"
},
{
"label": "publish",
"command": "dotnet",
"type": "process",
"args": [
"publish",
2021-05-09 16:28:20 +01:00
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "test",
"command": "dotnet",
"type": "process",
"options": {
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"args": [
"test",
2021-04-08 02:03:17 +01:00
"/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",
2021-04-08 03:08:20 +01:00
"/property:GenerateFullPaths=true",
"/restore"
2021-04-08 02:03:17 +01:00
],
"options": {
"env": {
2021-05-09 16:28:20 +01:00
"ASPNETCORE_ENVIRONMENT": "Development"
2021-04-08 02:03:17 +01:00
}
},
"problemMatcher": "$msCompile"
}
]
}