| 123456789101112131415161718192021222324 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- <TargetFramework>net8.0</TargetFramework>
- <RollForward>Major</RollForward>
- <PublishReadyToRun>false</PublishReadyToRun>
- <TieredCompilation>false</TieredCompilation>
- <UseWindowsForms>true</UseWindowsForms>
- <AssemblyName>SamplesContentBuilder</AssemblyName>
- <RootNamespace>SamplesContentBuilder</RootNamespace>
- <MonoGamePlatform>DesktopGL</MonoGamePlatform>
- </PropertyGroup>
- <PropertyGroup>
- <ApplicationManifest>app.manifest</ApplicationManifest>
- <ApplicationIcon>...\..\Core\Content\Game.ico</ApplicationIcon>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.*" />
- <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.*" />
- </ItemGroup>
- <ItemGroup>
- <MonoGameContentReference Include="..\..\Core\Content\Content-DesktopGL.mgcb" />
- </ItemGroup>
- </Project>
|