Client only
This commit is contained in:
1
ReportingServices.Client/.vscode/format-report.json
vendored
Normal file
1
ReportingServices.Client/.vscode/format-report.json
vendored
Normal file
@ -0,0 +1 @@
|
||||
[]
|
49
ReportingServices.Client/.vscode/launch.json
vendored
Normal file
49
ReportingServices.Client/.vscode/launch.json
vendored
Normal 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" ]
|
||||
}
|
||||
]
|
||||
}
|
10
ReportingServices.Client/.vscode/settings.json
vendored
Normal file
10
ReportingServices.Client/.vscode/settings.json
vendored
Normal 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"
|
||||
}
|
41
ReportingServices.Client/.vscode/tasks.json
vendored
Normal file
41
ReportingServices.Client/.vscode/tasks.json
vendored
Normal 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"
|
||||
}
|
||||
]
|
||||
}
|
Reference in New Issue
Block a user