]> fortfriendship.online Git - gnargle.github.io.git/blob - .vscode/launch.json
new entry. happy birthday undertale
[gnargle.github.io.git] / .vscode / launch.json
1 {
2 "version": "0.2.0",
3 "configurations": [
4 {
5 // Use IntelliSense to find out which attributes exist for C# debugging
6 // Use hover for the description of the existing attributes
7 // For further information visit https://github.com/dotnet/vscode-csharp/blob/main/debugger-launchjson.md
8 "name": "RSSGen",
9 "type": "coreclr",
10 "request": "launch",
11 "preLaunchTask": "build",
12 // If you have changed target frameworks, make sure to update the program path.
13 "program": "${workspaceFolder}/RSSGen/bin/Debug/net8.0/RSSGen.dll",
14 "args": [],
15 "cwd": "${workspaceFolder}/RSSGen",
16 // For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
17 "console": "internalConsole",
18 "stopAtEntry": false
19 },
20 {
21 // Use IntelliSense to find out which attributes exist for C# debugging
22 // Use hover for the description of the existing attributes
23 // For further information visit https://github.com/dotnet/vscode-csharp/blob/main/debugger-launchjson.md
24 "name": "ParticleGen",
25 "type": "coreclr",
26 "request": "launch",
27 "preLaunchTask": "buildParticle",
28 // If you have changed target frameworks, make sure to update the program path.
29 "program": "${workspaceFolder}/SiteTools/ParticleGen/bin/Debug/net8.0/ParticleGen.dll",
30 "args": [],
31 "cwd": "${workspaceFolder}/RSSGen",
32 // For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
33 "console": "internalConsole",
34 "stopAtEntry": false
35 },
36 {
37 "name": ".NET Core Attach",
38 "type": "coreclr",
39 "request": "attach"
40 }
41 ]
42 }