Skip to content

Instantly share code, notes, and snippets.

@samuelloza
Created August 11, 2021 18:42
Show Gist options
  • Save samuelloza/fbcdd2c010cfa133e72028afb2bf01bc to your computer and use it in GitHub Desktop.
Save samuelloza/fbcdd2c010cfa133e72028afb2bf01bc to your computer and use it in GitHub Desktop.
Run Multiples Project c# vscode
{
"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