PerformanceMeasuring.csproj 994 B

12345678910111213141516171819202122232425262728
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net9.0</TargetFramework>
  5. <Nullable>disable</Nullable>
  6. <ImplicitUsings>disable</ImplicitUsings>
  7. <PublishReadyToRun>false</PublishReadyToRun>
  8. <TieredCompilation>false</TieredCompilation>
  9. <ApplicationIcon>Game.ico</ApplicationIcon>
  10. <EnableDefaultCompileItems>false</EnableDefaultCompileItems>
  11. <!-- Assembly info migrated from AssemblyInfo.cs -->
  12. <AssemblyTitle>PerformanceMeasuring</AssemblyTitle>
  13. <Product>PerformanceMeasuring</Product>
  14. <Description></Description>
  15. <Company>Microsoft</Company>
  16. <Copyright>Copyright © Microsoft 2010</Copyright>
  17. <Trademark></Trademark>
  18. <AssemblyVersion>1.0.0.0</AssemblyVersion>
  19. </PropertyGroup>
  20. <ItemGroup>
  21. <PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.*" />
  22. <ProjectReference Include="..\..\Core\PerformanceMeasuring.Core.csproj" />
  23. </ItemGroup>
  24. </Project>