Ryujinx.HLE.csproj 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netcoreapp3.1</TargetFramework>
  4. <LangVersion>8.0</LangVersion>
  5. <RuntimeIdentifiers>win-x64;osx-x64;linux-x64</RuntimeIdentifiers>
  6. <Configurations>Debug;Release;Profile Debug;Profile Release</Configurations>
  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_DEBUGGING</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_DEBUGGING</DefineConstants>
  22. <Optimize>true</Optimize>
  23. </PropertyGroup>
  24. <!-- Due to Concentus. -->
  25. <PropertyGroup>
  26. <NoWarn>NU1605</NoWarn>
  27. </PropertyGroup>
  28. <ItemGroup>
  29. <None Remove="Homebrew.npdm" />
  30. <None Remove="RyujinxProfileImage.jpg" />
  31. </ItemGroup>
  32. <ItemGroup>
  33. <EmbeddedResource Include="Homebrew.npdm" />
  34. <EmbeddedResource Include="RyujinxProfileImage.jpg" />
  35. </ItemGroup>
  36. <ItemGroup>
  37. <ProjectReference Include="..\Ryujinx.Audio\Ryujinx.Audio.csproj" />
  38. <ProjectReference Include="..\Ryujinx.Common\Ryujinx.Common.csproj" />
  39. <ProjectReference Include="..\Ryujinx.Cpu\Ryujinx.Cpu.csproj" />
  40. <ProjectReference Include="..\Ryujinx.Debugger\Ryujinx.Debugger.csproj" />
  41. <ProjectReference Include="..\Ryujinx.Memory\Ryujinx.Memory.csproj" />
  42. <ProjectReference Include="..\ARMeilleure\ARMeilleure.csproj" />
  43. <ProjectReference Include="..\Ryujinx.Graphics.Gpu\Ryujinx.Graphics.Gpu.csproj" />
  44. <ProjectReference Include="..\Ryujinx.Graphics.GAL\Ryujinx.Graphics.GAL.csproj" />
  45. </ItemGroup>
  46. <ItemGroup>
  47. <PackageReference Include="Concentus" Version="1.1.7" />
  48. <PackageReference Include="LibHac" Version="0.11.2" />
  49. <PackageReference Include="MsgPack.Cli" Version="1.0.1" />
  50. </ItemGroup>
  51. </Project>