Add project files.

This commit is contained in:
2026-07-09 08:52:32 +02:00
parent c0df845c6e
commit b72f04cb4e
22 changed files with 1811 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<BlazorDisableThrowNavigationException>true</BlazorDisableThrowNavigationException>
</PropertyGroup>
<Target Name="BuildTailwind" BeforeTargets="Build">
<Exec Command="yarn tailwindcss -i ./Styles/app.css -o ./wwwroot/app.min.css" />
</Target>
<ItemGroup>
<Folder Include="wwwroot\lib\" />
</ItemGroup>
</Project>