Ryujinx.csproj 861 B

12345678910111213141516171819202122
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>netcoreapp2.0</TargetFramework>
  5. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  6. <RuntimeIdentifiers>win10-x64;osx-x64</RuntimeIdentifiers>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <PackageReference Include="OpenTK.NETCore" Version="1.1.2749.6433" />
  10. <PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="4.4.0" />
  11. </ItemGroup>
  12. <ItemGroup>
  13. <ProjectReference Include="..\ChocolArm64\ChocolArm64.csproj" />
  14. <ProjectReference Include="..\Ryujinx.Core\Ryujinx.Core.csproj" />
  15. <ProjectReference Include="..\Ryujinx.Graphics\Ryujinx.Graphics.csproj" />
  16. </ItemGroup>
  17. <ItemGroup>
  18. <None Update="Ryujinx.conf">
  19. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  20. </None>
  21. </ItemGroup>
  22. </Project>