Skip to content

Commit

Permalink
Update docs, VSCode tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
msmithNI committed Oct 30, 2024
1 parent dd59599 commit e6d7531
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,21 @@
},
"problemMatcher": "$msCompile"
},
{
"label": "blazor-hybrid-example:build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/packages/blazor-workspace/Examples/Demo.Hybrid/Demo.Hybrid.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"options": {
"cwd": "${workspaceFolder}/packages/blazor-workspace/Examples/Demo.Hybrid/"
},
"problemMatcher": "$msCompile"
},
{
"label": "blazor-server-example:watch",
"command": "dotnet",
Expand Down Expand Up @@ -141,5 +156,20 @@
},
"problemMatcher": "$msCompile"
},
{
"label": "blazor-hybrid-example:watch",
"command": "dotnet",
"type": "process",
"args": [
"watch",
"run",
"--project",
"${workspaceFolder}/packages/blazor-workspace/Examples/Demo.Hybrid/Demo.Hybrid.csproj"
],
"options": {
"cwd": "${workspaceFolder}/packages/blazor-workspace/Examples/Demo.Hybrid/"
},
"problemMatcher": "$msCompile"
},
]
}
4 changes: 4 additions & 0 deletions packages/blazor-workspace/NimbleBlazor/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,10 @@ Visual Studio Code commands are included to build and run the example projects.
- `blazor-server-example:watch`: Run the `Demo.Server` project in watch mode (to automatically pick up code changes)
- `blazor-wasm-example:build`: Build the `Demo.Client` project
- `blazor-wasm-example:watch`: Run the `Demo.Client` project in watch mode (to automatically pick up code changes)
- `blazor-hybrid-example:build`: Build the `Demo.Hybrid` project
- `blazor-hybrid-example:watch`: Run the `Demo.Hybrid` project in watch mode (to automatically pick up code changes)

Also see the [trusting the ASP.NET Core development certificate docs](https://learn.microsoft.com/en-us/aspnet/core/security/enforcing-ssl?view=aspnetcore-8.0&tabs=visual-studio%2Clinux-sles#trust-the-aspnet-core-https-development-certificate-on-windows-and-macos).

## Creating a New Project

Expand Down

0 comments on commit e6d7531

Please sign in to comment.