This commit is contained in:
Paul Schneider
2021-05-10 21:32:29 +01:00
parent 4cec5d0229
commit 3086cc65c4
6 changed files with 208 additions and 0 deletions

22
.vscode/launch.json vendored
View File

@ -24,6 +24,28 @@
"sourceFileMap": {
"/Views": "${workspaceFolder}/src/nuget-host/Views"
}
},
{
"name": ".NET Core Launch cli",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "buildcli",
"program": "${workspaceFolder}/src/nuget-cli/bin/Debug/netcoreapp2.1/nuget-cli.dll",
"args": [ "push",
"-k", "lame-aki-key",
"-s", "http://localhost:5000/packages",
"lame.nupkg"
],
"cwd": "${workspaceFolder}/src/nuget-cli",
"stopAtEntry": false,
"requireExactSource": false,
"serverReadyAction": {
"action": "openExternally",
"pattern": "\\\\bNow listening on:\\\\s+(https?://\\\\S+)"
},
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
}
]
}