Primitives.csproj 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net9.0</TargetFramework>
  5. <AssemblyName>Primitives</AssemblyName>
  6. <RootNamespace>PrimitivesSample</RootNamespace>
  7. <ApplicationIcon>..\..\Core\Content\Game.ico</ApplicationIcon>
  8. <AssemblyTitle>MonoGame.Samples.Primitives.DesktopGL</AssemblyTitle>
  9. <AssemblyDescription></AssemblyDescription>
  10. <AssemblyConfiguration></AssemblyConfiguration>
  11. <AssemblyCompany>Savage Software Solutions Ltd.</AssemblyCompany>
  12. <AssemblyProduct></AssemblyProduct>
  13. <AssemblyCopyright>Savage Software Solutions Ltd.</AssemblyCopyright>
  14. <AssemblyTrademark></AssemblyTrademark>
  15. <AssemblyCulture></AssemblyCulture>
  16. <AssemblyVersion>1.0</AssemblyVersion>
  17. </PropertyGroup>
  18. <ItemGroup>
  19. <PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.*" />
  20. <ProjectReference Include="..\..\Core\Primitives.Core.csproj" />
  21. </ItemGroup>
  22. <ItemGroup>
  23. <Content Include="..\..\Core\Content\**\*.xnb" Link="Content\%(RecursiveDir)%(Filename)%(Extension)">
  24. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  25. </Content>
  26. </ItemGroup>
  27. <ItemGroup>
  28. <None Include="Primitives.icns">
  29. <Link>$(AssemblyName).icns</Link>
  30. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  31. </None>
  32. </ItemGroup>
  33. </Project>