Ryujinx.HLE.csproj 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net5.0</TargetFramework>
  4. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  5. </PropertyGroup>
  6. <ItemGroup>
  7. <ProjectReference Include="..\Ryujinx.Audio\Ryujinx.Audio.csproj" />
  8. <ProjectReference Include="..\Ryujinx.Common\Ryujinx.Common.csproj" />
  9. <ProjectReference Include="..\Ryujinx.Cpu\Ryujinx.Cpu.csproj" />
  10. <ProjectReference Include="..\Ryujinx.Graphics.Host1x\Ryujinx.Graphics.Host1x.csproj" />
  11. <ProjectReference Include="..\Ryujinx.Graphics.Nvdec\Ryujinx.Graphics.Nvdec.csproj" />
  12. <ProjectReference Include="..\Ryujinx.Graphics.Vic\Ryujinx.Graphics.Vic.csproj" />
  13. <ProjectReference Include="..\Ryujinx.Memory\Ryujinx.Memory.csproj" />
  14. <ProjectReference Include="..\ARMeilleure\ARMeilleure.csproj" />
  15. <ProjectReference Include="..\Ryujinx.Graphics.Gpu\Ryujinx.Graphics.Gpu.csproj" />
  16. <ProjectReference Include="..\Ryujinx.Graphics.GAL\Ryujinx.Graphics.GAL.csproj" />
  17. </ItemGroup>
  18. <ItemGroup>
  19. <PackageReference Include="Concentus" Version="1.1.7" />
  20. <PackageReference Include="LibHac" Version="0.12.0" />
  21. <PackageReference Include="MsgPack.Cli" Version="1.0.1" />
  22. </ItemGroup>
  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. </Project>