40 строки
1.6 KiB
JSON
40 строки
1.6 KiB
JSON
{
|
|
// Use IntelliSense to find out which attributes exist for C# debugging
|
|
// Use hover for the description of the existing attributes
|
|
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": ".NET Core Launch (Blazor Standalone)",
|
|
"type": "coreclr",
|
|
"request": "launch",
|
|
"program": "dotnet",
|
|
"args": [
|
|
"run"
|
|
],
|
|
"cwd": "${workspaceFolder}/site/AntDesign.Docs.Wasm",
|
|
"env": {
|
|
"ASPNETCORE_ENVIRONMENT": "Development"
|
|
}
|
|
},
|
|
{
|
|
"name": ".NET Core Debug Blazor Web Assembly in Chrome",
|
|
"type": "pwa-chrome",
|
|
"request": "launch",
|
|
"timeout": 30000,
|
|
// If you have changed the default port / launch URL make sure to update the expectation below
|
|
"url": "https://localhost:5001",
|
|
"webRoot": "${workspaceFolder}/site/AntDesign.Docs.Wasm",
|
|
"inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}"
|
|
},
|
|
{
|
|
"name": ".NET Core Debug Blazor Web Assembly in Edge",
|
|
"type": "msedge",
|
|
"request": "launch",
|
|
"timeout": 300000,
|
|
// If you have changed the default port / launch URL make sure to update the expectation below
|
|
"url": "http://localhost:5000",
|
|
"webRoot": "${workspaceFolder}/site/AntDesign.Docs.Wasm",
|
|
}
|
|
]
|
|
} |