Ryujinx.Graphics.Gpu.csproj 949 B

123456789101112131415161718192021222324
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <ItemGroup>
  3. <ProjectReference Include="..\ARMeilleure\ARMeilleure.csproj" />
  4. <ProjectReference Include="..\Ryujinx.Graphics.GAL\Ryujinx.Graphics.GAL.csproj" />
  5. <ProjectReference Include="..\Ryujinx.Common\Ryujinx.Common.csproj" />
  6. <ProjectReference Include="..\Ryujinx.Graphics.Texture\Ryujinx.Graphics.Texture.csproj" />
  7. <ProjectReference Include="..\Ryujinx.Graphics.Shader\Ryujinx.Graphics.Shader.csproj" />
  8. </ItemGroup>
  9. <PropertyGroup>
  10. <TargetFramework>netcoreapp3.1</TargetFramework>
  11. <RuntimeIdentifiers>win-x64;osx-x64;linux-x64</RuntimeIdentifiers>
  12. </PropertyGroup>
  13. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  14. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  15. </PropertyGroup>
  16. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  17. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  18. </PropertyGroup>
  19. </Project>