| 1234567891011121314151617181920212223242526272829 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>WinExe</OutputType>
- <TargetFramework>net8.0-windows</TargetFramework>
- <UseWindowsForms>true</UseWindowsForms>
- <Nullable>disable</Nullable>
- <ImplicitUsings>disable</ImplicitUsings>
- <PublishReadyToRun>false</PublishReadyToRun>
- <TieredCompilation>false</TieredCompilation>
- <ApplicationIcon>..\..\Core\Content\Game.ico</ApplicationIcon>
- <EnableDefaultCompileItems>false</EnableDefaultCompileItems>
- <!-- Assembly info migrated from AssemblyInfo.cs -->
- <AssemblyTitle>PerformanceMeasuring</AssemblyTitle>
- <Product>PerformanceMeasuring</Product>
- <Description></Description>
- <Company>Microsoft</Company>
- <Copyright>Copyright © Microsoft 2010</Copyright>
- <Trademark></Trademark>
- <AssemblyVersion>1.0.0.0</AssemblyVersion>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="MonoGame.Framework.WindowsDX" Version="3.8.*" />
- <ProjectReference Include="..\..\Core\PerformanceMeasuring.Core.csproj" />
- </ItemGroup>
- </Project>
|