aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.Vulkan/Ryujinx.Graphics.Vulkan.csproj
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.Graphics.Vulkan/Ryujinx.Graphics.Vulkan.csproj')
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Ryujinx.Graphics.Vulkan.csproj39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/Ryujinx.Graphics.Vulkan/Ryujinx.Graphics.Vulkan.csproj b/src/Ryujinx.Graphics.Vulkan/Ryujinx.Graphics.Vulkan.csproj
new file mode 100644
index 00000000..20216e51
--- /dev/null
+++ b/src/Ryujinx.Graphics.Vulkan/Ryujinx.Graphics.Vulkan.csproj
@@ -0,0 +1,39 @@
+<Project Sdk="Microsoft.NET.Sdk">
+
+ <PropertyGroup>
+ <TargetFramework>net7.0</TargetFramework>
+ </PropertyGroup>
+
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
+ <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
+ </PropertyGroup>
+
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
+ <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <EmbeddedResource Include="Effects\Textures\SmaaAreaTexture.bin" />
+ <EmbeddedResource Include="Effects\Textures\SmaaSearchTexture.bin" />
+ <EmbeddedResource Include="Effects\Shaders\FsrScaling.spv" />
+ <EmbeddedResource Include="Effects\Shaders\FsrSharpening.spv" />
+ <EmbeddedResource Include="Effects\Shaders\Fxaa.spv" />
+ <EmbeddedResource Include="Effects\Shaders\SmaaBlend.spv" />
+ <EmbeddedResource Include="Effects\Shaders\SmaaEdge.spv" />
+ <EmbeddedResource Include="Effects\Shaders\SmaaNeighbour.spv" />
+ </ItemGroup>
+
+ <ItemGroup>
+ <PackageReference Include="OpenTK.Windowing.GraphicsLibraryFramework" />
+ <PackageReference Include="shaderc.net" />
+ <PackageReference Include="Silk.NET.Vulkan" />
+ <PackageReference Include="Silk.NET.Vulkan.Extensions.EXT" />
+ <PackageReference Include="Silk.NET.Vulkan.Extensions.KHR" />
+ </ItemGroup>
+
+ <ItemGroup>
+ <ProjectReference Include="..\Ryujinx.Common\Ryujinx.Common.csproj" />
+ <ProjectReference Include="..\Ryujinx.Graphics.GAL\Ryujinx.Graphics.GAL.csproj" />
+ </ItemGroup>
+
+</Project>