diff options
| author | Alee <Alee14498@gmail.com> | 2019-05-10 20:54:04 -0400 |
|---|---|---|
| committer | Alee <Alee14498@gmail.com> | 2019-05-10 20:54:04 -0400 |
| commit | ef4fefa80725aceb45364e3e309db1dc0babc2de (patch) | |
| tree | 82fe9eeb306f29f476cb5fbf94561c5ca0b58b61 /.vscode | |
| parent | e7a4eabb90aad77272235c1d9bc44b9186841bf1 (diff) | |
| download | AleeBot.NET-ef4fefa80725aceb45364e3e309db1dc0babc2de.tar.gz AleeBot.NET-ef4fefa80725aceb45364e3e309db1dc0babc2de.tar.bz2 AleeBot.NET-ef4fefa80725aceb45364e3e309db1dc0babc2de.zip | |
Added stuff for the VSCode IDE
Diffstat (limited to '.vscode')
| -rw-r--r-- | .vscode/launch.json | 27 | ||||
| -rw-r--r-- | .vscode/tasks.json | 17 |
2 files changed, 44 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 diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..a914fef --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,17 @@ +{ + // See https://go.microsoft.com/fwlink/?LinkId=733558 + // for the documentation about the tasks.json format + "version": "2.0.0", + "tasks": [ + { + "label": "build", + "command": "dotnet build", + "type": "shell", + "group": "build", + "presentation": { + "reveal": "silent" + }, + "problemMatcher": "$msCompile" + } + ] +}
\ No newline at end of file |
