| 1234567891011121314151617181920212223 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net8.0-windows</TargetFramework>
- <OutputType>WinExe</OutputType>
- <RootNamespace>GemstoneHunter.Windows</RootNamespace>
- <AssemblyName>GemstoneHunter.Windows</AssemblyName>
- <UseWindowsForms>true</UseWindowsForms>
- <ApplicationIcon>..\..\Core\Content\Game.ico</ApplicationIcon>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\Core\GemstoneHunter.Core.csproj" />
- <PackageReference Include="MonoGame.Framework.WindowsDX" Version="3.8.*" />
- </ItemGroup>
- <ItemGroup>
- <Content Include="..\..\Core\Content\**\*.xnb" Link="Content\%(RecursiveDir)%(Filename)%(Extension)">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- <Content Include="..\..\Core\Content\**\*.MAP" Link="Content\%(RecursiveDir)%(Filename)%(Extension)">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- </ItemGroup>
- </Project>
|