Ryujinx.HLE.csproj 2.1 KB

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