Ryujinx.Graphics.GAL.csproj 623 B

1234567891011121314151617181920
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net7.0</TargetFramework>
  4. </PropertyGroup>
  5. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  6. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  7. </PropertyGroup>
  8. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  9. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  10. </PropertyGroup>
  11. <ItemGroup>
  12. <ProjectReference Include="..\Ryujinx.Graphics.Shader\Ryujinx.Graphics.Shader.csproj" />
  13. <ProjectReference Include="..\Ryujinx.Common\Ryujinx.Common.csproj" />
  14. </ItemGroup>
  15. </Project>