artifacts

This commit is contained in:
Paul Schneider
2021-05-09 16:28:20 +01:00
parent db6f514fb5
commit 61dc82df5b
3 changed files with 21 additions and 27 deletions

23
.vscode/launch.json vendored
View File

@ -6,7 +6,7 @@
"configurations": [
{
"name": ".NET Core Launch (web)",
"type": "clr",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/src/nuget-host/bin/Debug/netcoreapp2.1/nuget-host.dll",
@ -24,27 +24,6 @@
"sourceFileMap": {
"/Views": "${workspaceFolder}/src/nuget-host/Views"
}
},
{
"name": ".NET Core Launch (prod)",
"type": "clr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/src/nuget-host/bin/Debug/netcoreapp2.1/nuget-host.dll",
"args": [],
"cwd": "${workspaceFolder}/src/nuget-host/",
"stopAtEntry": false,
"requireExactSource": false,
"serverReadyAction": {
"action": "openExternally",
"pattern": "\\\\bNow listening on:\\\\s+(https?://\\\\S+)"
},
"env": {
"ASPNETCORE_ENVIRONMENT": "Production"
},
"sourceFileMap": {
"/Views": "${workspaceFolder}/src/nuget-host/Views"
}
}
]
}