Ryujinx.csproj 941 B

1234567891011121314151617181920212223
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>netcoreapp2.1</TargetFramework>
  5. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  6. <RuntimeIdentifiers>win10-x64;osx-x64;linux-x64</RuntimeIdentifiers>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <PackageReference Include="OpenTK.NetStandard" Version="1.0.4" />
  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.Audio\Ryujinx.Audio.csproj" />
  15. <ProjectReference Include="..\Ryujinx.HLE\Ryujinx.HLE.csproj" />
  16. <ProjectReference Include="..\Ryujinx.Graphics\Ryujinx.Graphics.csproj" />
  17. </ItemGroup>
  18. <ItemGroup>
  19. <None Update="Ryujinx.conf">
  20. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  21. </None>
  22. </ItemGroup>
  23. </Project>