mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-02 03:57:38 +08:00
31 lines
1.2 KiB
JSON
31 lines
1.2 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/AntBlazor.Docs.Wasm",
|
|
"env": {
|
|
"ASPNETCORE_ENVIRONMENT": "Development"
|
|
}
|
|
},
|
|
{
|
|
"name": ".NET Core Debug Blazor Web Assembly in Chrome",
|
|
"type": "pwa-msedge",
|
|
"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/AntBlazor.Docs.Wasm",
|
|
"inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}"
|
|
}
|
|
]
|
|
} |