Skip to content

Commit

Permalink
feat(blazorui): replace the old templates with the BlazorEmpty in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
msynk authored Nov 14, 2023
1 parent 5fe7f3e commit fe75202
Showing 1 changed file with 8 additions and 11 deletions.
19 changes: 8 additions & 11 deletions src/BlazorUI/Demo/Client/Core/Pages/OverviewPage.razor
Original file line number Diff line number Diff line change
Expand Up @@ -48,29 +48,26 @@
</div>

<section class="page-section">
<BitTypography Variant="BitTypographyVariant.H4" Class="subtitle">Project templates</BitTypography>
<BitTypography Variant="BitTypographyVariant.H4" Class="subtitle">Project template</BitTypography>

<BitTypography Variant="BitTypographyVariant.Body1" Gutter>
You can use our project templates to get started quickly with a predefined solution.
You can use our BlazorEmpty (bit-empty) project template to get started quickly with a predefined solution
which is compatible with the new approach introduced in .NET 8.
</BitTypography>
<BitTypography Variant="BitTypographyVariant.Body1" Gutter>
To use the BlazorServer or Server Side Blazor (SSB) project template, you can use the following command:
</BitTypography>
<div class="code-box">dotnet new install Bit.BlazorServer</div>

<BitTypography Variant="BitTypographyVariant.Body1" Gutter>
And to use the BlazorWasm or Client Side Blazor (CSB) project template, you can use the following command:
To use this project template, you first need to install it using the following command:
</BitTypography>
<div class="code-box">dotnet new install Bit.BlazorWasm</div>

<div class="code-box">dotnet new install Bit.BlazorEmpty</div>

<br />

<BitTypography Variant="BitTypographyVariant.Body1" Gutter>
Then you can create a new project using one of these commands:
Then you can create a new project using this command:
</BitTypography>

<div class="code-box">dotnet new bit-ssb -n MyBlazorServerApp</div>
<div class="code-box">dotnet new bit-csb -n MyBlazorWasmApp</div>
<div class="code-box">dotnet new bit-empty -n MyBitBlazorEmptyApp</div>
</section>

<section class="page-section">
Expand Down

0 comments on commit fe75202

Please sign in to comment.