Browse Source

* Added link to the locally hosted app.

* Added vscode launch / build tasks.
  (Not verified - I use VS 2019).
master
Jaime Wyant 4 years ago
parent
commit
a076416a66
  1. 11
      .vscode/launch.json
  2. 42
      .vscode/tasks.json
  3. 4
      README.md

11
.vscode/launch.json

@ -0,0 +1,11 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch and Debug Standalone Blazor WebAssembly App",
"type": "blazorwasm",
"request": "launch",
"cwd": "${workspaceFolder}/531Calculator"
}
]
}

42
.vscode/tasks.json

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

4
README.md

@ -1,3 +1,5 @@
# 531Calculator
Blazor WASM Implementation of Wendler's 531 Calculator
Blazor WASM Implementation of Wendler's 531 Calculator
I host this app [here](https://wyant.us/apps/531Calculator/).
Loading…
Cancel
Save