BouncingBox.Windows.csproj 764 B

1234567891011121314151617181920212223
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net8.0-windows</TargetFramework>
  5. <UseWindowsForms>true</UseWindowsForms>
  6. <AssemblyName>BouncingBox</AssemblyName>
  7. <RootNamespace>Microsoft.Xna.Samples.BouncingBox</RootNamespace>
  8. <Nullable>disable</Nullable>
  9. </PropertyGroup>
  10. <ItemGroup>
  11. <ProjectReference Include="..\..\Core\BouncingBox.Core.csproj" />
  12. <PackageReference Include="MonoGame.Framework.WindowsDX" Version="3.8.*" />
  13. </ItemGroup>
  14. <ItemGroup>
  15. <Content Include="..\..\Core\Content\**\*.xnb" Link="Content\%(RecursiveDir)%(Filename)%(Extension)">
  16. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  17. </Content>
  18. </ItemGroup>
  19. </Project>