isn/.vscode/launch.json

50 lines
1.8 KiB
JSON

4 years ago
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": ".NET Core Launch (web)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
3 years ago
"program": "${workspaceFolder}/src/nuget-host/bin/Debug/netcoreapp2.1/nuget-host.dll",
4 years ago
"args": [],
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
"requireExactSource": false,
4 years ago
"serverReadyAction": {
"action": "openExternally",
"pattern": "\\\\bNow listening on:\\\\s+(https?://\\\\S+)"
},
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"sourceFileMap": {
3 years ago
"/Views": "${workspaceFolder}/src/nuget-host/Views"
4 years ago
}
},
{
"name": ".NET Core Launch (prod)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
3 years ago
"program": "${workspaceFolder}/src/nuget-host/bin/Debug/netcoreapp2.1/nuget-host.dll",
"args": [],
3 years ago
"cwd": "${workspaceFolder}/src/nuget-host/",
"stopAtEntry": false,
"requireExactSource": false,
"serverReadyAction": {
"action": "openExternally",
"pattern": "\\\\bNow listening on:\\\\s+(https?://\\\\S+)"
},
"env": {
"ASPNETCORE_ENVIRONMENT": "Production"
},
"sourceFileMap": {
3 years ago
"/Views": "${workspaceFolder}/src/nuget-host/Views"
}
4 years ago
}
]
}