FloodControl.Windows.csproj 1.0 KB

12345678910111213141516171819202122232425
  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" Link="Content\%(RecursiveDir)%(Filename)%(Extension)">
  20. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  21. </Content>
  22. </ItemGroup>
  23. </Project>