clean
This commit is contained in:
22
.vscode/launch.json
vendored
22
.vscode/launch.json
vendored
@ -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"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
15
.vscode/tasks.json
vendored
15
.vscode/tasks.json
vendored
@ -19,6 +19,21 @@
|
||||
"type": "process",
|
||||
"args": [
|
||||
"build",
|
||||
"src/nuget-host",
|
||||
"/p:Configuration=Debug",
|
||||
"/property:GenerateFullPaths=true",
|
||||
"/consoleloggerparameters:NoSummary",
|
||||
"--ignore-failed-sources"
|
||||
],
|
||||
"problemMatcher": "$msCompile"
|
||||
},
|
||||
{
|
||||
"label": "buildcli",
|
||||
"command": "dotnet",
|
||||
"type": "process",
|
||||
"args": [
|
||||
"build",
|
||||
"src/nuget-cli",
|
||||
"/p:Configuration=Debug",
|
||||
"/property:GenerateFullPaths=true",
|
||||
"/consoleloggerparameters:NoSummary",
|
||||
|
Reference in New Issue
Block a user