Client only

This commit is contained in:
2023-01-13 15:33:58 -07:00
parent a2512b41e1
commit b9e95e3c55
140 changed files with 95748 additions and 0 deletions

View File

@ -0,0 +1 @@
[]

View File

@ -0,0 +1,49 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch",
"type": "blazorwasm",
"request": "launch",
"cwd": "${workspaceFolder}",
"browser": "edge",
"url": "https://localhost:7023", // Tell launch where to find site
"timeout": 120000, // Allows time for the site to launch
},
{
"name": "Watch",
"type": "coreclr",
"request": "launch",
"cwd": "${workspaceFolder}",
"program": "dotnet",
"args": [
"watch",
"--launch-profile",
"Phares-Development",
"--project",
".",
"--verbose" // Let's us confirm browser connects with hot reload capabilities
],
"preLaunchTask": "build" // Ensure we don't watch an unbuilt site
},
{
"name": "Attach",
"type": "blazorwasm",
"request": "attach",
"cwd": "${workspaceFolder}",
"browser": "edge",
"url": "https://localhost:7022", // Tell launch where to find site
"timeout": 120000, // Allows time for the site to launch
}
],
"compounds": [
{
"name": "Hot Reload with Debug - Attach",
"configurations": [ "Watch", "Attach" ]
},
{
"name": "Hot Reload with Debug - Launch",
"configurations": [ "Watch", "Launch" ]
}
]
}

View File

@ -0,0 +1,10 @@
{
"coverage-gutters.coverageBaseDir": "../.vscode/TestResults/*",
"cSpell.words": [
"ASPNETCORE",
"Blazor",
"Serilog",
"Setpoint"
],
"publish": "dotnet publish -p:BlazorEnableCompression=false -p:BlazorWebassemblyEnableLinking=false --output D:/ --configuration Release"
}

View File

@ -0,0 +1,41 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/ReportingServices.Client.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "publish",
"command": "dotnet",
"type": "process",
"args": [
"publish",
"${workspaceFolder}/ReportingServices.Client.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "watch",
"command": "dotnet",
"type": "process",
"args": [
"watch",
"run",
"--project",
"${workspaceFolder}/ReportingServices.Client.csproj"
],
"problemMatcher": "$msCompile"
}
]
}