FloodControl.Windows.csproj 947 B

1234567891011121314151617181920212223
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net8.0-windows</TargetFramework>
  5. <AssemblyName>FloodControl</AssemblyName>
  6. <RootNamespace>Flood_Control</RootNamespace>
  7. <UseWindowsForms>false</UseWindowsForms>
  8. <PublishReadyToRun>false</PublishReadyToRun>
  9. <TieredCompilation>false</TieredCompilation>
  10. <ApplicationManifest>..\..\Core\Content\app.manifest</ApplicationManifest>
  11. <ApplicationIcon>..\..\Core\Content\Game.ico</ApplicationIcon>
  12. </PropertyGroup>
  13. <ItemGroup>
  14. <PackageReference Include="MonoGame.Framework.WindowsDX" Version="3.8.*" />
  15. <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.*" />
  16. <ProjectReference Include="..\..\Core\FloodControl.Core.csproj" />
  17. </ItemGroup>
  18. <ItemGroup>
  19. <Content Include="..\..\Core\Content\**\*.xnb" CopyToOutputDirectory="PreserveNewest" />
  20. </ItemGroup>
  21. </Project>