Skip to content

Commit 9d7ea83

Browse files
committed
remove blazor-wasm template
1 parent f27bc18 commit 9d7ea83

4 files changed

Lines changed: 1 addition & 21 deletions

File tree

MyApp/_pages/auth/identity-auth.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ Identity Auth in your own projects:
5757

5858
- [blazor](https://github.com/NetCoreTemplates/blazor)
5959
- [blazor-vue](https://github.com/NetCoreTemplates/blazor-vue)
60-
- [blazor-wasm](https://github.com/LegacyTemplates/blazor-wasm)
6160
- [razor](https://github.com/NetCoreTemplates/razor)
6261
- [mvc](https://github.com/NetCoreTemplates/mvc)
6362
- [razor-bootstrap](https://github.com/NetCoreTemplates/razor-bootstrap)

MyApp/_pages/releases/v8_01.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1394,16 +1394,6 @@ options.JwtAuth(x => {
13941394
</div>
13951395
</div>
13961396

1397-
<div class="not-prose relative bg-white dark:bg-black py-4">
1398-
<div class="mx-auto max-w-md px-4 text-center sm:max-w-3xl sm:px-6 lg:max-w-7xl lg:px-8">
1399-
<p class="mt-2 text-3xl font-extrabold tracking-tight text-gray-900 dark:text-gray-50 sm:text-4xl">Create a new Blazor WASM Tailwind App</p>
1400-
<p class="mx-auto mt-5 max-w-prose text-xl text-gray-500">
1401-
Create a new Blazor WASM Tailwind project with your preferred project name:
1402-
</p>
1403-
</div>
1404-
<blazor-wasm-template repo="LegacyTemplates/blazor-wasm" name="Blazor"></blazor-wasm-template>
1405-
</div>
1406-
14071397
Since the release of .NET 8, we have been upgrading our [Blazor Templates](https://servicestack.net/start) and example applications to take advantage of some of the new features, including making use of static Server Side Rendering (SSR) for Blazor, which allows for faster initial page loads and better SEO, and our [blazor-wasm](https://github.com/LegacyTemplates/blazor-wasm) template uses `InteractiveAuto` by default to provide a more Responsive UI.
14081398

14091399
## What is InteractiveAuto?

MyApp/wwwroot/pages/auth/identity-auth.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import Templates, { Index } from "../templates/Templates.mjs"
22

33
const IdentityAuthTemplates = {
44
components: { Templates },
5-
template:`<Templates :templates="[Index['blazor'], Index['blazor-vue'], Index['blazor-wasm'], Index['razor'], Index['mvc'], Index['razor-bootstrap']]" hide="demo" />`,
5+
template:`<Templates :templates="[Index['blazor'], Index['blazor-vue'], Index['razor'], Index['mvc'], Index['razor-bootstrap']]" hide="demo" />`,
66
setup() {
77
return { Index }
88
}

MyApp/wwwroot/pages/releases/v8_01.mjs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,6 @@ const BlazorTemplate = {
99
}
1010
}
1111

12-
const BlazorWasmTemplate = {
13-
components: { Templates },
14-
template:`<Templates :templates="[Index['blazor-wasm']]" />`,
15-
setup() {
16-
return { Index }
17-
}
18-
}
19-
2012
const BlazorVueTemplate = {
2113
components: { Templates },
2214
template:`<Templates :templates="[Index['blazor-vue']]" />`,
@@ -31,7 +23,6 @@ export default {
3123
components: {
3224
AudioPlayer,
3325
BlazorTemplate,
34-
BlazorWasmTemplate,
3526
BlazorVueTemplate,
3627
},
3728
setup() {

0 commit comments

Comments
 (0)