| 12345678910111213141516171819202122232425262728 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>WinExe</OutputType>
- <TargetFramework>net8.0</TargetFramework>
- <AssemblyName>Primitives.DesktopGL</AssemblyName>
- <RootNamespace>PrimitivesSample</RootNamespace>
- <ApplicationIcon>..\..\Core\Content\Game.ico</ApplicationIcon>
- <AssemblyTitle>MonoGame.Samples.Primitives.DesktopGL</AssemblyTitle>
- <AssemblyDescription></AssemblyDescription>
- <AssemblyConfiguration></AssemblyConfiguration>
- <AssemblyCompany>Savage Software Solutions Ltd.</AssemblyCompany>
- <AssemblyProduct></AssemblyProduct>
- <AssemblyCopyright>Savage Software Solutions Ltd.</AssemblyCopyright>
- <AssemblyTrademark></AssemblyTrademark>
- <AssemblyCulture></AssemblyCulture>
- <AssemblyVersion>1.0</AssemblyVersion>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.*" />
- <ProjectReference Include="..\..\Core\Primitives.Core.csproj" />
- </ItemGroup>
- <ItemGroup>
- <Content Include="..\..\Core\Content\**\*.xnb" Link="Content\%(RecursiveDir)%(Filename)%(Extension)">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- </ItemGroup>
- </Project>
|