Ryujinx.HLE.csproj 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netcoreapp3.0</TargetFramework>
  4. <RuntimeIdentifiers>win-x64;osx-x64;linux-x64</RuntimeIdentifiers>
  5. <Configurations>Debug;Release;Profile Debug;Profile Release</Configurations>
  6. </PropertyGroup>
  7. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  8. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  9. </PropertyGroup>
  10. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Profile Debug|AnyCPU'">
  11. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  12. <DefineConstants>TRACE;USE_PROFILING</DefineConstants>
  13. <Optimize>false</Optimize>
  14. </PropertyGroup>
  15. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  16. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  17. </PropertyGroup>
  18. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Profile Release|AnyCPU'">
  19. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  20. <DefineConstants>TRACE;USE_PROFILING</DefineConstants>
  21. <Optimize>true</Optimize>
  22. </PropertyGroup>
  23. <!-- Due to Concentus. -->
  24. <PropertyGroup>
  25. <NoWarn>NU1605</NoWarn>
  26. </PropertyGroup>
  27. <ItemGroup>
  28. <None Remove="Homebrew.npdm" />
  29. <None Remove="RyujinxProfileImage.jpg" />
  30. </ItemGroup>
  31. <ItemGroup>
  32. <EmbeddedResource Include="Homebrew.npdm" />
  33. <EmbeddedResource Include="RyujinxProfileImage.jpg" />
  34. </ItemGroup>
  35. <ItemGroup>
  36. <ProjectReference Include="..\Ryujinx.Audio\Ryujinx.Audio.csproj" />
  37. <ProjectReference Include="..\Ryujinx.Common\Ryujinx.Common.csproj" />
  38. <ProjectReference Include="..\Ryujinx.Profiler\Ryujinx.Profiler.csproj" />
  39. <ProjectReference Include="..\ARMeilleure\ARMeilleure.csproj" />
  40. <ProjectReference Include="..\Ryujinx.Graphics.Gpu\Ryujinx.Graphics.Gpu.csproj" />
  41. <ProjectReference Include="..\Ryujinx.Graphics.GAL\Ryujinx.Graphics.GAL.csproj" />
  42. </ItemGroup>
  43. <ItemGroup>
  44. <PackageReference Include="Concentus" Version="1.1.7" />
  45. <PackageReference Include="LibHac" Version="0.7.0" />
  46. <PackageReference Include="TimeZoneConverter.Posix" Version="2.1.0" />
  47. </ItemGroup>
  48. </Project>