Ryujinx.csproj 932 B

12345678910111213141516171819202122232425262728
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netcoreapp2.1</TargetFramework>
  4. <RuntimeIdentifiers>win10-x64;osx-x64;linux-x64</RuntimeIdentifiers>
  5. <OutputType>Exe</OutputType>
  6. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <PackageReference Include="OpenTK.NetStandard" Version="1.0.4" />
  10. </ItemGroup>
  11. <ItemGroup>
  12. <ProjectReference Include="..\ChocolArm64\ChocolArm64.csproj" />
  13. <ProjectReference Include="..\Ryujinx.Audio\Ryujinx.Audio.csproj" />
  14. <ProjectReference Include="..\Ryujinx.Common\Ryujinx.Common.csproj" />
  15. <ProjectReference Include="..\Ryujinx.Graphics\Ryujinx.Graphics.csproj" />
  16. <ProjectReference Include="..\Ryujinx.HLE\Ryujinx.HLE.csproj" />
  17. </ItemGroup>
  18. <ItemGroup>
  19. <None Update="Config.jsonc">
  20. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  21. </None>
  22. </ItemGroup>
  23. </Project>