Ryujinx.Graphics.Gpu.csproj 984 B

12345678910111213141516171819202122232425
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <ItemGroup>
  3. <ProjectReference Include="..\Ryujinx.Cpu\Ryujinx.Cpu.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. <LangVersion>8.0</LangVersion>
  12. <RuntimeIdentifiers>win-x64;osx-x64;linux-x64</RuntimeIdentifiers>
  13. </PropertyGroup>
  14. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  15. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  16. </PropertyGroup>
  17. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  18. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  19. </PropertyGroup>
  20. </Project>