| 123456789101112131415161718192021222324 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net8.0</TargetFramework>
- <RootNamespace>TexturedQuad.DesktopGL</RootNamespace>
- <AssemblyName>TexturedQuad.DesktopGL</AssemblyName>
- <OutputType>Exe</OutputType>
- <GenerateAssemblyInfo>true</GenerateAssemblyInfo>
- <MonoGamePlatform>DesktopGL</MonoGamePlatform>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\Core\TexturedQuad.Core.csproj" />
- <PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.*" />
- <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.*" />
- </ItemGroup>
- <ItemGroup>
- <MonoGameContentReference Include="..\..\Core\Content\Content.mgcb">
- <Link>Content\Content.mgcb</Link>
- </MonoGameContentReference>
- </ItemGroup>
- <Target Name="RestoreDotnetTools" BeforeTargets="CollectPackageReferences">
- <Message Text="Restoring dotnet tools (this might take a while depending on your internet speed and should only happen upon building your project for the first time, or after upgrading MonoGame, or clearing your nuget cache)" Importance="High" />
- <Exec Command="dotnet tool restore" />
- </Target>
- </Project>
|