From a076416a66250850e7f082b8889106922328a637 Mon Sep 17 00:00:00 2001 From: Jaime Wyant Date: Fri, 24 Sep 2021 09:48:35 -0500 Subject: [PATCH] * Added link to the locally hosted app. * Added vscode launch / build tasks. (Not verified - I use VS 2019). --- .vscode/launch.json | 11 +++++++++++ .vscode/tasks.json | 42 ++++++++++++++++++++++++++++++++++++++++++ README.md | 4 +++- 3 files changed, 56 insertions(+), 1 deletion(-) create mode 100644 .vscode/launch.json create mode 100644 .vscode/tasks.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..2e11cf9 --- /dev/null +++ b/.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" + } + ] +} \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..b2178c8 --- /dev/null +++ b/.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" + } + ] +} \ No newline at end of file diff --git a/README.md b/README.md index 64cff23..d220c51 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ # 531Calculator -Blazor WASM Implementation of Wendler's 531 Calculator \ No newline at end of file +Blazor WASM Implementation of Wendler's 531 Calculator + +I host this app [here](https://wyant.us/apps/531Calculator/). \ No newline at end of file