Skip to content

Instantly share code, notes, and snippets.

@gussiciliano
Last active August 3, 2018 16:39
Show Gist options
  • Save gussiciliano/19b188e85d0ba95f04a0545ff12fbefd to your computer and use it in GitHub Desktop.
Save gussiciliano/19b188e85d0ba95f04a0545ff12fbefd to your computer and use it in GitHub Desktop.
{
"version": "0.2.0",
"configurations": [
{
"name": ".NET Core Launch (web)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceRoot}/src/bin/Debug/netcoreappXXX/YOUR_APP_DLL.dll",
"args": [],
"cwd": "${workspaceRoot}/src",
"stopAtEntry": false,
"launchBrowser": {
"enabled": true,
"args": "${auto-detect-url}",
"windows": {
"command": "cmd.exe",
"args": "/C start ${auto-detect-url}"
},
"osx": {
"command": "open"
},
"linux": {
"command": "xdg-open"
}
},
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"sourceFileMap": {
"/Views": "${workspaceRoot}/Views"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment