isn/.vscode/launch.json

29 lines
1,009 B
JSON
Raw Normal View History

2021-04-08 02:03:17 +01:00
{
// 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",
2021-04-25 12:12:50 +01:00
"program": "${workspaceFolder}/bin/Debug/netcoreapp2.1/nuget-host.dll",
2021-04-08 02:03:17 +01:00
"args": [],
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
2021-04-17 14:19:00 +01:00
"requireExactSource": false,
2021-04-08 02:03:17 +01:00
"serverReadyAction": {
"action": "openExternally",
"pattern": "\\\\bNow listening on:\\\\s+(https?://\\\\S+)"
},
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"sourceFileMap": {
"/Views": "${workspaceFolder}/Views"
}
}
]
}