cli to msbuild

This commit is contained in:
Paul Schneider
2021-05-14 03:15:34 +01:00
parent c83ff84370
commit 90cfc29492
5 changed files with 25 additions and 17 deletions

5
.vscode/tasks.json vendored
View File

@ -28,15 +28,14 @@
},
{
"label": "buildcli",
"command": "dotnet",
"command": "msbuild",
"type": "process",
"args": [
"build",
"src/nuget-cli",
"/p:Configuration=Debug",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary",
"--ignore-failed-sources"
"/restore"
],
"problemMatcher": "$msCompile"
},