Ryujinx.HLE.csproj 753 B

12345678910111213141516171819202122
  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. <ProjectReference Include="..\ChocolArm64\ChocolArm64.csproj" />
  14. <ProjectReference Include="..\Ryujinx.Audio\Ryujinx.Audio.csproj" />
  15. <ProjectReference Include="..\Ryujinx.Graphics\Ryujinx.Graphics.csproj" />
  16. </ItemGroup>
  17. </Project>