summaryrefslogtreecommitdiffstats
path: root/.vscode/launch.json
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2021-04-18 23:54:35 +0000
committerToby Vincent <tobyv13@gmail.com>2021-04-18 23:54:35 +0000
commitcf192cef8e969c00b6d243f76e5a20b326ec59e1 (patch)
treef8930b980dd9a9e151249bc991f5cd708febdbe3 /.vscode/launch.json
parent57492674a247337ced3db690fdcdb965a205ed34 (diff)
build scafolding and inital logic
Diffstat (limited to '.vscode/launch.json')
-rw-r--r--.vscode/launch.json19
1 files changed, 19 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
new file mode 100644
index 0000000..87630ac
--- /dev/null
+++ b/.vscode/launch.json
@@ -0,0 +1,19 @@
+{
+ // Use IntelliSense to learn about possible attributes.
+ // Hover to view descriptions of existing attributes.
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
+ "version": "0.2.0",
+ "configurations": [
+ {
+ "name": ".NET Core Launch (console)",
+ "type": "coreclr",
+ "request": "launch",
+ "preLaunchTask": "build",
+ "program": "${workspaceFolder}/src/CS340.TSP/bin/Debug/net5.0/CS340.TSP.dll",
+ "args": [],
+ "cwd": "${workspaceFolder}/src/CS340.TSP",
+ "console": "internalConsole",
+ "stopAtEntry": false
+ }
+ ]
+} \ No newline at end of file