Initial project

This commit is contained in:
2026-02-21 18:48:45 -06:00
parent 7e96bc2c10
commit ec230876ed
69 changed files with 3345 additions and 0 deletions

17
src/Client/Client.csproj Normal file
View File

@@ -0,0 +1,17 @@
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
<PropertyGroup>
<RootNamespace>$(Namespace).Client</RootNamespace>
<AssemblyName>$(Namespace).Client</AssemblyName>
<NoDefaultLaunchSettingsFile>true</NoDefaultLaunchSettingsFile>
<StaticWebAssetProjectMode>Default</StaticWebAssetProjectMode>
<BlazorDisableThrowNavigationException>true</BlazorDisableThrowNavigationException>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="../Core/Core.csproj" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="$(DotNetVersion)" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Authentication" Version="$(DotNetVersion)" />
</ItemGroup>
</Project>