Compare commits

...

2 Commits

Author SHA1 Message Date
Jaime Wyant f32ecfa8d8 Merge branch 'master' of https://git.wyant.us/jaime/531Calculator 4 years ago
Jaime Wyant a076416a66 * Added link to the locally hosted app. 4 years ago
  1. 11
      .vscode/launch.json
  2. 42
      .vscode/tasks.json
  3. 2
      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"
}
]
}

2
README.md

@ -1,3 +1,5 @@
# 531Calculator # 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