Created
March 31, 2017 00:03
-
-
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...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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