PerformanceMeasuring.Windows.csproj 1.0 KB

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