mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-02 20:17:58 +08:00
82ef62b7a7
* fix: add @commitlint/config-conventional to devDependencies * feat: add basic table implementation * feat: continue adding definitions * feat: end of work in 20200414 * fix: add readonly to csssizelength * fix: warnings from table * fix: add ignorecase to csssizelength * feat: refactor table * feat: add simple table Co-authored-by: ElderJames <shunjiey@hotmail.com>
40 lines
1.6 KiB
JSON
40 lines
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/AntBlazor.Docs.Wasm",
|
|
}
|
|
]
|
|
} |