Skip to content

Instantly share code, notes, and snippets.

@maxan
Created March 31, 2017 00:03
Show Gist options
  • Save maxan/ea5c847d0565205ce935ea3b4ba1c172 to your computer and use it in GitHub Desktop.
Save maxan/ea5c847d0565205ce935ea3b4ba1c172 to your computer and use it in GitHub Desktop.
Example launch.json file when it exists one .net core project and angular under the same root folder...
{
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"url": "http://localhost:4200",
"sourceMaps": true,
"webRoot": "${workspaceRoot}/my-own-app"
},
{
"name": ".NET Core Launch (Web API)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceRoot}/MyProjectWebApi/bin/Debug/netcoreapp1.1/MyProjectWebApi.dll",
"args": [],
"cwd": "${workspaceRoot}/MyProjectWebApi/",
"externalConsole": false,
"stopAtEntry": false
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment