| 12345678910111213141516171819202122 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- <TargetFramework>net8.0</TargetFramework>
- <AssemblyName>BouncingBox</AssemblyName>
- <RootNamespace>Microsoft.Xna.Samples.BouncingBox</RootNamespace>
- <Nullable>disable</Nullable>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\Core\BouncingBox.Core.csproj" />
- <PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.*" />
- </ItemGroup>
- <ItemGroup>
- <Content Include="..\..\Core\Content\**\*.xnb" Link="Content\%(RecursiveDir)%(Filename)%(Extension)">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- </ItemGroup>
- </Project>
|