Updated vscode assets to launch server for hosted project.

This commit is contained in:
Harrison Deng 2021-05-25 17:51:02 -05:00
parent 3f1b7d9ac6
commit c67db54eeb
2 changed files with 4 additions and 4 deletions

2
.vscode/launch.json vendored
View File

@ -5,7 +5,7 @@
"name": "Launch and Debug Standalone Blazor WebAssembly App", "name": "Launch and Debug Standalone Blazor WebAssembly App",
"type": "blazorwasm", "type": "blazorwasm",
"request": "launch", "request": "launch",
"cwd": "${workspaceFolder}/src/MultiShop" "cwd": "${workspaceFolder}/src/MultiShop/Server"
} }
] ]
} }

6
.vscode/tasks.json vendored
View File

@ -7,7 +7,7 @@
"type": "process", "type": "process",
"args": [ "args": [
"build", "build",
"${workspaceFolder}/src/MultiShop/MultiShop.csproj", "${workspaceFolder}/src/MultiShop/Server/MultiShop.Server.csproj",
"/property:GenerateFullPaths=true", "/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary" "/consoleloggerparameters:NoSummary"
], ],
@ -19,7 +19,7 @@
"type": "process", "type": "process",
"args": [ "args": [
"publish", "publish",
"${workspaceFolder}/src/MultiShop/MultiShop.csproj", "${workspaceFolder}/src/MultiShop/Server/MultiShop.Server.csproj",
"/property:GenerateFullPaths=true", "/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary" "/consoleloggerparameters:NoSummary"
], ],
@ -32,7 +32,7 @@
"args": [ "args": [
"watch", "watch",
"run", "run",
"${workspaceFolder}/src/MultiShop/MultiShop.csproj", "${workspaceFolder}/src/MultiShop/Server/MultiShop.Server.csproj",
"/property:GenerateFullPaths=true", "/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary" "/consoleloggerparameters:NoSummary"
], ],