aboutsummaryrefslogtreecommitdiff
path: root/.vscode/launch.json
diff options
context:
space:
mode:
authorAlee <Alee14498@gmail.com>2019-05-10 20:54:04 -0400
committerAlee <Alee14498@gmail.com>2019-05-10 20:54:04 -0400
commitef4fefa80725aceb45364e3e309db1dc0babc2de (patch)
tree82fe9eeb306f29f476cb5fbf94561c5ca0b58b61 /.vscode/launch.json
parente7a4eabb90aad77272235c1d9bc44b9186841bf1 (diff)
downloadAleeBot.NET-ef4fefa80725aceb45364e3e309db1dc0babc2de.tar.gz
AleeBot.NET-ef4fefa80725aceb45364e3e309db1dc0babc2de.tar.bz2
AleeBot.NET-ef4fefa80725aceb45364e3e309db1dc0babc2de.zip
Added stuff for the VSCode IDE
Diffstat (limited to '.vscode/launch.json')
-rw-r--r--.vscode/launch.json27
1 files changed, 27 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
new file mode 100644
index 0000000..a29e431
--- /dev/null
+++ b/.vscode/launch.json
@@ -0,0 +1,27 @@
+{
+ // 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
+ "version": "0.2.0",
+ "configurations": [
+ {
+ "name": ".NET Core Launch (console)",
+ "type": "coreclr",
+ "request": "launch",
+ "preLaunchTask": "build",
+ // If you have changed target frameworks, make sure to update the program path.
+ "program": "${workspaceFolder}/AleeBot/bin/Debug/netcoreapp3.0/AleeBot.dll",
+ "args": [],
+ "cwd": "${workspaceFolder}/AleeBot",
+ // For more information about the 'console' field, see https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md#console-terminal-window
+ "console": "internalConsole",
+ "stopAtEntry": false
+ },
+ {
+ "name": ".NET Core Attach",
+ "type": "coreclr",
+ "request": "attach",
+ "processId": "${command:pickProcess}"
+ }
+ ]
+} \ No newline at end of file