Skip to content

Commit

Permalink
Always halt after build script
Browse files Browse the repository at this point in the history
  • Loading branch information
ulrichb committed Nov 18, 2024
1 parent b1a5256 commit 5d4f3e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Properties/launchSettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
"Build.ps1 w/o Rider and Tests": {
"commandName": "Executable",
"executablePath": "pwsh",
"commandLineArgs": "-Command Build\\Build.ps1 -BuildRiderPlugin 0 -RunTests 0 || pause",
"commandLineArgs": "-Command Build\\Build.ps1 -BuildRiderPlugin 0 -RunTests 0; pause",
"workingDirectory": "$(SolutionDir)"
},
"Build.ps1": {
"commandName": "Executable",
"executablePath": "pwsh",
"commandLineArgs": "-Command Build\\Build.ps1 || pause",
"commandLineArgs": "-Command Build\\Build.ps1; pause",
"workingDirectory": "$(SolutionDir)"
}
}
Expand Down

0 comments on commit 5d4f3e4

Please sign in to comment.