aboutsummaryrefslogtreecommitdiffstats
path: root/.vscode/launch.json
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2021-09-19 18:30:53 -0500
committerToby Vincent <tobyv13@gmail.com>2021-09-19 18:30:53 -0500
commitfcbd2a28aad728d4c722b0c24fcdc9db6b8a7a40 (patch)
treeb930c0b56e96e14485ba5ee070d3229df89aa7d5 /.vscode/launch.json
parent0fa7a5448cebcafac4d44b85766b797c740b8b42 (diff)
cleaned up usings and launch.jsonHEADmain
Diffstat (limited to '.vscode/launch.json')
-rw-r--r--.vscode/launch.json12
1 files changed, 1 insertions, 11 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 965b44d..d9f7f30 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -3,25 +3,15 @@
"configurations": [
{
- // Use IntelliSense to find out which attributes exist for C# debugging
- // Use hover for the description of the existing attributes
- // For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
- "name": ".NET Core Launch (console)",
+ "name": "Launch",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
- // If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/src/HuffmanCodes/bin/Debug/net5.0/HuffmanCodes.dll",
"args": ["LittleWomen.txt", "Alice.txt"],
"cwd": "${workspaceFolder}/src/HuffmanCodes",
- // For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
"console": "integratedTerminal",
"stopAtEntry": false
- },
- {
- "name": ".NET Core Attach",
- "type": "coreclr",
- "request": "attach"
}
]
} \ No newline at end of file