1234567891011121314151617181920212223 |
- <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" CopyToOutputDirectory="PreserveNewest" />
- </ItemGroup>
- </Project>
|