isn/.vscode/launch.json

51 lines
1.8 KiB
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)",
2021-05-09 16:28:20 +01:00
"type": "coreclr",
2021-04-08 02:03:17 +01:00
"request": "launch",
"preLaunchTask": "build",
2021-05-09 13:45:55 +01:00
"program": "${workspaceFolder}/src/nuget-host/bin/Debug/netcoreapp2.1/nuget-host.dll",
2021-04-08 02:03:17 +01:00
"args": [],
2021-05-09 18:07:48 +01:00
"cwd": "${workspaceFolder}/src/nuget-host",
2021-04-08 02:03:17 +01:00
"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": {
2021-05-09 13:45:55 +01:00
"/Views": "${workspaceFolder}/src/nuget-host/Views"
2021-04-08 02:03:17 +01:00
}
2021-05-10 21:32:29 +01:00
},
{
"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"
}
2021-04-08 02:03:17 +01:00
}
]
}