Skip to content

Commit

Permalink
task.json order
Browse files Browse the repository at this point in the history
  • Loading branch information
ZacharyPatten committed Oct 31, 2023
1 parent 29dab22 commit 07fc5b0
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -640,39 +640,39 @@
"problemMatcher": "$msCompile",
},
{
"label": "Build Solution",
"label": "Build Tetris",
"command": "dotnet",
"type": "process",
"args":
[
"build",
"${workspaceFolder}",
"${workspaceFolder}/Projects/Tetris/Tetris.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary",
],
"problemMatcher": "$msCompile",
},
{
"label": "Restore Solution",
"label": "Build Solution",
"command": "dotnet",
"type": "process",
"args":
[
"restore",
"build",
"${workspaceFolder}",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary",
],
"problemMatcher": "$msCompile",
},
{
"label": "Build Tetris",
"label": "Restore Solution",
"command": "dotnet",
"type": "process",
"args":
[
"build",
"${workspaceFolder}/Projects/Tetris/Tetris.csproj",
"restore",
"${workspaceFolder}",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary",
],
Expand Down

0 comments on commit 07fc5b0

Please sign in to comment.