Ryujinx.HLE.csproj 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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</Configurations>
  7. </PropertyGroup>
  8. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  9. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  10. </PropertyGroup>
  11. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  12. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  13. </PropertyGroup>
  14. <!-- Due to Concentus. -->
  15. <PropertyGroup>
  16. <NoWarn>NU1605</NoWarn>
  17. </PropertyGroup>
  18. <ItemGroup>
  19. <None Remove="Homebrew.npdm" />
  20. <None Remove="RyujinxProfileImage.jpg" />
  21. </ItemGroup>
  22. <ItemGroup>
  23. <EmbeddedResource Include="Homebrew.npdm" />
  24. <EmbeddedResource Include="RyujinxProfileImage.jpg" />
  25. </ItemGroup>
  26. <ItemGroup>
  27. <ProjectReference Include="..\Ryujinx.Audio.Renderer\Ryujinx.Audio.Renderer.csproj" />
  28. <ProjectReference Include="..\Ryujinx.Audio\Ryujinx.Audio.csproj" />
  29. <ProjectReference Include="..\Ryujinx.Common\Ryujinx.Common.csproj" />
  30. <ProjectReference Include="..\Ryujinx.Cpu\Ryujinx.Cpu.csproj" />
  31. <ProjectReference Include="..\Ryujinx.Graphics.Host1x\Ryujinx.Graphics.Host1x.csproj" />
  32. <ProjectReference Include="..\Ryujinx.Graphics.Nvdec\Ryujinx.Graphics.Nvdec.csproj" />
  33. <ProjectReference Include="..\Ryujinx.Graphics.Vic\Ryujinx.Graphics.Vic.csproj" />
  34. <ProjectReference Include="..\Ryujinx.Memory\Ryujinx.Memory.csproj" />
  35. <ProjectReference Include="..\ARMeilleure\ARMeilleure.csproj" />
  36. <ProjectReference Include="..\Ryujinx.Graphics.Gpu\Ryujinx.Graphics.Gpu.csproj" />
  37. <ProjectReference Include="..\Ryujinx.Graphics.GAL\Ryujinx.Graphics.GAL.csproj" />
  38. </ItemGroup>
  39. <ItemGroup>
  40. <PackageReference Include="Concentus" Version="1.1.7" />
  41. <PackageReference Include="LibHac" Version="0.12.0" />
  42. <PackageReference Include="MsgPack.Cli" Version="1.0.1" />
  43. </ItemGroup>
  44. </Project>