<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    <OutputType>WinExe</OutputType>
    <TargetFramework>net6.0-windows</TargetFramework>
    <Nullable>enable</Nullable>
    <UseWindowsForms>true</UseWindowsForms>
    <ImplicitUsings>enable</ImplicitUsings>
  </PropertyGroup>

  <ItemGroup>
    <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.5">
      <PrivateAssets>all</PrivateAssets>
      <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
    </PackageReference>
  </ItemGroup>

  <ItemGroup>
    <ProjectReference Include="..\ForumBusinessLogic\ForumBusinessLogic.csproj" />
    <ProjectReference Include="..\ForumContracts\ForumContracts.csproj" />
    <ProjectReference Include="..\ForumDatabase\ForumDatabase.csproj" />
    <ProjectReference Include="..\ForumDataModels\ForumDataModels.csproj" />
  </ItemGroup>

</Project>