Skip to content

Instantly share code, notes, and snippets.

@M4N1
Created October 15, 2018 05:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save M4N1/daff738de1d5cbcf8cf3fdc461c3a83c to your computer and use it in GitHub Desktop.
Save M4N1/daff738de1d5cbcf8cf3fdc461c3a83c to your computer and use it in GitHub Desktop.
{
// 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}/CommunityBot/bin/Debug/netcoreapp2.1/CommunityBot.dll",
"args": [],
"cwd": "${workspaceFolder}/CommunityBot",
"console": "externalTerminal",
"stopAtEntry": true,
"internalConsoleOptions": "openOnSessionStart"
},
{
"name": ".NET Core Attach",
"type": "coreclr",
"request": "attach",
"processId": "${command:pickProcess}"
}
]
}
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/CommunityBot/CommunityBot.csproj"
],
"problemMatcher": "$msCompile"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment