Ryujinx.Graphics.Vulkan.csproj 1.2 KB

12345678910111213141516171819202122232425262728293031
  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. <PackageReference Include="OpenTK.Windowing.GraphicsLibraryFramework" Version="4.7.5" />
  13. <PackageReference Include="shaderc.net" Version="0.1.0" />
  14. <PackageReference Include="Silk.NET.Vulkan" Version="2.16.0" />
  15. <PackageReference Include="Silk.NET.Vulkan.Extensions.EXT" Version="2.16.0" />
  16. <PackageReference Include="Silk.NET.Vulkan.Extensions.KHR" Version="2.16.0" />
  17. <PackageReference Include="System.IO.FileSystem.Primitives" Version="4.3.0" />
  18. <PackageReference Include="System.Net.NameResolution" Version="4.3.0" />
  19. <PackageReference Include="System.Threading.ThreadPool" Version="4.3.0" />
  20. </ItemGroup>
  21. <ItemGroup>
  22. <ProjectReference Include="..\Ryujinx.Common\Ryujinx.Common.csproj" />
  23. <ProjectReference Include="..\Ryujinx.Graphics.GAL\Ryujinx.Graphics.GAL.csproj" />
  24. </ItemGroup>
  25. </Project>