2021-12-03 18:12:36 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2021-08-12 06:09:56 +00:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-05-24 18:12:40 +00:00
|
|
|
|
<PackageReference Include="OpenTK.Windowing.GraphicsLibraryFramework" Version="4.7.2" />
|
2021-08-12 06:09:56 +00:00
|
|
|
|
<PackageReference Include="shaderc.net" Version="0.1.0" />
|
2021-12-03 19:06:01 +00:00
|
|
|
|
<PackageReference Include="Silk.NET.Vulkan" Version="2.10.1" />
|
|
|
|
|
<PackageReference Include="Silk.NET.Vulkan.Extensions.EXT" Version="2.10.1" />
|
|
|
|
|
<PackageReference Include="Silk.NET.Vulkan.Extensions.KHR" Version="2.10.1" />
|
2021-08-12 06:09:56 +00:00
|
|
|
|
<PackageReference Include="System.IO.FileSystem.Primitives" Version="4.3.0" />
|
|
|
|
|
<PackageReference Include="System.Net.NameResolution" Version="4.3.0" />
|
|
|
|
|
<PackageReference Include="System.Threading.ThreadPool" Version="4.3.0" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\Ryujinx.Common\Ryujinx.Common.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Ryujinx.Graphics.GAL\Ryujinx.Graphics.GAL.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|