mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-02-22 09:03:36 +00:00
39 lines
1.6 KiB
XML
39 lines
1.6 KiB
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
||
|
<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>
|
||
|
<PackageReference Include="OpenTK.Windowing.GraphicsLibraryFramework" Version="4.5.0" />
|
||
|
<PackageReference Include="shaderc.net" Version="0.1.0" />
|
||
|
<PackageReference Include="Silk.NET.Vulkan" Version="2.1.0" />
|
||
|
<PackageReference Include="Silk.NET.Vulkan.Extensions.EXT" Version="2.1.0" />
|
||
|
<PackageReference Include="Silk.NET.Vulkan.Extensions.KHR" Version="2.1.0" />
|
||
|
<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>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<ContentWithTargetPath Include="Native\shaderc\libs\shaderc_shared.dll" Condition="'$(RuntimeIdentifier)' != 'linux-x64' AND '$(RuntimeIdentifier)' != 'osx-x64'">
|
||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||
|
<TargetPath>shaderc_shared.dll</TargetPath>
|
||
|
</ContentWithTargetPath>
|
||
|
</ItemGroup>
|
||
|
|
||
|
</Project>
|