Files
shield 16160f6424 feat: initial datamodel + ef connection and migrations
Initial version of the data model
Includes EF initialization and migrations
EF migrations are applied on application start
2026-04-09 10:36:09 +02:00

17 lines
478 B
XML

<Project Sdk="Microsoft.NET.Sdk.WebAssembly">
<PropertyGroup>
<TargetFramework>net10.0-browser</TargetFramework>
<OutputType>Exe</OutputType>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Avalonia.Browser" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\TournamentOrganizer\TournamentOrganizer.csproj" />
</ItemGroup>
</Project>