Visual studio automatically changed the build tasks when I opened this project to find the NUKE icon name

This commit is contained in:
2022-08-23 00:25:11 +00:00
parent be1ee71f32
commit 6ad26b162a

15
.vscode/tasks.json vendored
View File

@@ -1,16 +1,21 @@
{ {
"version": "0.1.0", "version": "2.0.0",
"command": "dotnet", "command": "dotnet",
"isShellCommand": true,
"args": [], "args": [],
"tasks": [ "tasks": [
{ {
"taskName": "build", "label": "build",
"type": "shell",
"command": "dotnet",
"args": [ "args": [
"build",
"${workspaceRoot}/pecklist.csproj" "${workspaceRoot}/pecklist.csproj"
], ],
"isBuildCommand": true, "problemMatcher": "$msCompile",
"problemMatcher": "$msCompile" "group": {
"_id": "build",
"isDefault": false
}
} }
] ]
} }