Ryujinx.HLE.csproj 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netcoreapp2.1</TargetFramework>
  4. <RuntimeIdentifiers>win10-x64;osx-x64;linux-x64</RuntimeIdentifiers>
  5. </PropertyGroup>
  6. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  7. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  8. </PropertyGroup>
  9. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  10. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  11. </PropertyGroup>
  12. <ItemGroup>
  13. <None Remove="Homebrew.npdm" />
  14. <None Remove="RyujinxProfileImage.jpg" />
  15. </ItemGroup>
  16. <ItemGroup>
  17. <EmbeddedResource Include="Homebrew.npdm" />
  18. <EmbeddedResource Include="RyujinxProfileImage.jpg" />
  19. </ItemGroup>
  20. <ItemGroup>
  21. <ProjectReference Include="..\ChocolArm64\ChocolArm64.csproj" />
  22. <ProjectReference Include="..\Ryujinx.Audio\Ryujinx.Audio.csproj" />
  23. <ProjectReference Include="..\Ryujinx.Common\Ryujinx.Common.csproj" />
  24. <ProjectReference Include="..\Ryujinx.Graphics\Ryujinx.Graphics.csproj" />
  25. </ItemGroup>
  26. <ItemGroup>
  27. <PackageReference Include="Concentus" Version="1.1.7" />
  28. <PackageReference Include="LibHac" Version="0.2.0" />
  29. </ItemGroup>
  30. </Project>