Ryujinx.HLE.csproj 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netcoreapp2.1</TargetFramework>
  4. <RuntimeIdentifiers>win10-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. <ItemGroup>
  24. <None Remove="Homebrew.npdm" />
  25. <None Remove="RyujinxProfileImage.jpg" />
  26. </ItemGroup>
  27. <ItemGroup>
  28. <EmbeddedResource Include="Homebrew.npdm" />
  29. <EmbeddedResource Include="RyujinxProfileImage.jpg" />
  30. </ItemGroup>
  31. <ItemGroup>
  32. <ProjectReference Include="..\ChocolArm64\ChocolArm64.csproj" />
  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. </ItemGroup>
  38. <ItemGroup>
  39. <PackageReference Include="Concentus" Version="1.1.7" />
  40. <PackageReference Include="LibHac" Version="0.4.1" />
  41. </ItemGroup>
  42. </Project>