Skip to content

Commit c5bcee1

Browse files
author
bmdub
committed
Add ImGuiVulkan
1 parent 32a3fcd commit c5bcee1

File tree

12 files changed

+2726
-257
lines changed

12 files changed

+2726
-257
lines changed

Silk.NET.sln

Lines changed: 272 additions & 257 deletions
Large diffs are not rendered by default.
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<OutputType>Exe</OutputType>
5+
<TargetFramework>netcoreapp3.1</TargetFramework>
6+
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
7+
<LangVersion>preview</LangVersion>
8+
</PropertyGroup>
9+
10+
<ItemGroup>
11+
<None Remove="shader.frag.spv" />
12+
<EmbeddedResource Include="shader.frag.spv" />
13+
<None Remove="shader.vert.spv" />
14+
<EmbeddedResource Include="shader.vert.spv" />
15+
</ItemGroup>
16+
17+
<ItemGroup>
18+
<PackageReference Include="ImGui.NET" Version="1.78.0" />
19+
</ItemGroup>
20+
21+
<ItemGroup>
22+
<ProjectReference Include="..\..\..\Input\Extensions\Silk.NET.Input.Extensions\Silk.NET.Input.Extensions.csproj" />
23+
<ProjectReference Include="..\..\..\Input\Silk.NET.Input\Silk.NET.Input.csproj" />
24+
<ProjectReference Include="..\..\..\Vulkan\Extensions\Silk.NET.Vulkan.Extensions.EXT\Silk.NET.Vulkan.Extensions.EXT.csproj" />
25+
<ProjectReference Include="..\..\..\Vulkan\Extensions\Silk.NET.Vulkan.Extensions.KHR\Silk.NET.Vulkan.Extensions.KHR.csproj" />
26+
<ProjectReference Include="..\..\..\Windowing\Silk.NET.Windowing\Silk.NET.Windowing.csproj" />
27+
</ItemGroup>
28+
29+
</Project>

0 commit comments

Comments
 (0)