BouncingBox.csproj 898 B

123456789101112131415161718192021222324252627282930
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net9.0</TargetFramework>
  5. <AssemblyName>BouncingBox</AssemblyName>
  6. <RootNamespace>Microsoft.Xna.Samples.BouncingBox</RootNamespace>
  7. <Nullable>disable</Nullable>
  8. </PropertyGroup>
  9. <ItemGroup>
  10. <ProjectReference Include="..\..\Core\BouncingBox.Core.csproj" />
  11. <PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.*" />
  12. </ItemGroup>
  13. <ItemGroup>
  14. <Content Include="..\..\Core\Content\**\*.xnb" Link="Content\%(RecursiveDir)%(Filename)%(Extension)">
  15. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  16. </Content>
  17. </ItemGroup>
  18. <ItemGroup>
  19. <None Include="BouncingBox.icns">
  20. <Link>$(AssemblyName).icns</Link>
  21. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  22. </None>
  23. </ItemGroup>
  24. </Project>