Add .NET 8 templated projects.

This commit is contained in:
2024-05-02 07:43:47 +01:00
parent ad76c620c2
commit e306bf272c
77 changed files with 4291 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
@page "/auth"
@using Microsoft.AspNetCore.Authorization
@attribute [Authorize]
<PageTitle>Auth</PageTitle>
<h1>You are authenticated</h1>
<AuthorizeView>
Hello @context.User.Identity?.Name!
</AuthorizeView>