Skip to content

Commit

Permalink
Updated launch profiles for VS Code.
Browse files Browse the repository at this point in the history
  • Loading branch information
tacosontitan committed Feb 1, 2024
1 parent 681e425 commit d58fcc3
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,28 @@
"console": "integratedTerminal",
"stopAtEntry": false
},
{
"name": "Samples (Output)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "Build",
"program": "${workspaceFolder}/samples/Hussy.Net.Output/bin/Debug/net8.0/Hussy.Net.Output.exe",
"args": [],
"cwd": "${workspaceFolder}/samples/Hussy.Net.Output",
"console": "integratedTerminal",
"stopAtEntry": false
},
{
"name": "Samples (Logic)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "Build",
"program": "${workspaceFolder}/samples/Hussy.Net.Logic/bin/Debug/net8.0/Hussy.Net.Logic.exe",
"args": [],
"cwd": "${workspaceFolder}/samples/Hussy.Net.Logic",
"console": "integratedTerminal",
"stopAtEntry": false
},
{
"name": "Samples (Hello World)",
"type": "coreclr",
Expand All @@ -22,6 +44,17 @@
"cwd": "${workspaceFolder}/samples/Hussy.Net.HelloWorld",
"console": "integratedTerminal",
"stopAtEntry": false
},
{
"name": "Samples (Fizz Buzz)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "Build",
"program": "${workspaceFolder}/samples/Hussy.Net.FizzBuzz/bin/Debug/net8.0/Hussy.Net.FizzBuzz.exe",
"args": [],
"cwd": "${workspaceFolder}/samples/Hussy.Net.FizzBuzz",
"console": "integratedTerminal",
"stopAtEntry": false
}
],
}

0 comments on commit d58fcc3

Please sign in to comment.