| 12345678910111213141516171819202122232425262728 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>WinExe</OutputType>
- <TargetFramework>net8.0-windows</TargetFramework>
- <RollForward>Major</RollForward>
- <PublishReadyToRun>false</PublishReadyToRun>
- <TieredCompilation>false</TieredCompilation>
- <UseWindowsForms>true</UseWindowsForms>
- <AssemblyName>Collision</AssemblyName>
- <RootNamespace>CollisionSample</RootNamespace>
- <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\CollisionSample.Core.csproj" />
- </ItemGroup>
- <ItemGroup>
- <Content Include="..\..\..\CompiledContent\Android\Content\Fonts\Arial.xnb" Link="Content\Arial.xnb">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- </ItemGroup>
- </Project>
|