| 12345678910111213141516171819202122232425 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>WinExe</OutputType>
- <TargetFramework>net8.0-windows</TargetFramework>
- <AssemblyName>FloodControl</AssemblyName>
- <RootNamespace>Flood_Control</RootNamespace>
- <UseWindowsForms>false</UseWindowsForms>
- <PublishReadyToRun>false</PublishReadyToRun>
- <TieredCompilation>false</TieredCompilation>
- <ApplicationManifest>..\..\Core\Content\app.manifest</ApplicationManifest>
- <ApplicationIcon>..\..\Core\Content\Game.ico</ApplicationIcon>
- </PropertyGroup>
-
- <ItemGroup>
- <PackageReference Include="MonoGame.Framework.WindowsDX" Version="3.8.*" />
- <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.*" />
- <ProjectReference Include="..\..\Core\FloodControl.Core.csproj" />
- </ItemGroup>
-
- <ItemGroup>
- <Content Include="..\..\Core\Content\**\*.xnb" Link="Content\%(RecursiveDir)%(Filename)%(Extension)">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- </ItemGroup>
- </Project>
|