Created
August 11, 2021 18:42
-
-
Save samuelloza/fbcdd2c010cfa133e72028afb2bf01bc to your computer and use it in GitHub Desktop.
Run Multiples Project c# vscode
This file contains 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": [ | |
{ | |
"name": "Api", | |
"type": "coreclr", | |
"request": "launch", | |
"preLaunchTask": "build", | |
"program": "${workspaceFolder}/src/Api/bin/Debug/net5.0/Api.dll", | |
"args": [], | |
"cwd": "${workspaceFolder}/src/Api", | |
"stopAtEntry": false, | |
"env": { | |
"ASPNETCORE_ENVIRONMENT": "Development" | |
}, | |
"sourceFileMap": { | |
"/Views": "${workspaceFolder}/Views" | |
} | |
}, | |
{ | |
"name": "Client", | |
"type": "coreclr", | |
"request": "launch", | |
"preLaunchTask": "build", | |
"program": "${workspaceFolder}/src/Client/bin/Debug/net5.0/Client.dll", | |
"args": [], | |
"cwd": "${workspaceFolder}/src/Client", | |
"stopAtEntry": false, | |
"env": { | |
"ASPNETCORE_ENVIRONMENT": "Development" | |
}, | |
"sourceFileMap": { | |
"/Views": "${workspaceFolder}/Views" | |
} | |
}, | |
{ | |
"name": "IdentityServer", | |
"type": "coreclr", | |
"request": "launch", | |
"preLaunchTask": "build", | |
"program": "${workspaceFolder}/src/IdentityServer/bin/Debug/net5.0/IdentityServer.dll", | |
"args": [], | |
"cwd": "${workspaceFolder}/src/IdentityServer", | |
"stopAtEntry": false, | |
"env": { | |
"ASPNETCORE_ENVIRONMENT": "Development" | |
}, | |
"sourceFileMap": { | |
"/Views": "${workspaceFolder}/Views" | |
} | |
}, | |
], | |
"compounds": [ | |
{ | |
"name": "Runn All", | |
"configurations": [ | |
"IdentityServer", | |
"Api", | |
"Client" | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment