eva_bead_1/view/view.csproj
2024-10-21 14:47:19 +02:00

22 lines
594 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\model\model.csproj" />
<ProjectReference Include="..\persistance\persistance.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="levels.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>