Ryujinx.Profiler.csproj 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netcoreapp3.0</TargetFramework>
  4. <RuntimeIdentifiers>win-x64;osx-x64;linux-x64</RuntimeIdentifiers>
  5. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  6. <Configurations>Debug;Release;Profile Debug;Profile Release</Configurations>
  7. </PropertyGroup>
  8. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  9. <DefineConstants>TRACE</DefineConstants>
  10. </PropertyGroup>
  11. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Profile Debug|AnyCPU'">
  12. <DefineConstants>TRACE;USE_PROFILING</DefineConstants>
  13. <Optimize>false</Optimize>
  14. </PropertyGroup>
  15. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Profile Release|AnyCPU'">
  16. <DefineConstants>TRACE;USE_PROFILING</DefineConstants>
  17. <Optimize>true</Optimize>
  18. </PropertyGroup>
  19. <ItemGroup>
  20. <PackageReference Include="OpenTK.NetStandard" Version="1.0.4" />
  21. <PackageReference Include="SharpFontCore" Version="0.1.1" />
  22. </ItemGroup>
  23. <ItemGroup>
  24. <ProjectReference Include="..\Ryujinx.Common\Ryujinx.Common.csproj" />
  25. </ItemGroup>
  26. <ItemGroup Condition="'$(Configuration)' == 'Profile Debug' Or '$(Configuration)' == 'Profile Release'">
  27. <None Update="ProfilerConfig.jsonc">
  28. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  29. </None>
  30. </ItemGroup>
  31. </Project>