-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproject.csproj
28 lines (25 loc) · 1.24 KB
/
project.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<DebugType>embedded</DebugType>
<PublishSingleFile>true</PublishSingleFile>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="SharpGLTF.Core" Version="1.0.1" />
<PackageReference Include="SharpGLTF.Runtime" Version="1.0.1" />
<PackageReference Include="Hexa.NET.ImGui" Version="1.0.4" />
<PackageReference Include="Hexa.NET.ImGuizmo" Version="1.0.4" />
<PackageReference Include="Hexa.NET.ImPlot" Version="1.0.4" />
<PackageReference Include="Silk.NET.Input" Version="2.21.0" />
<PackageReference Include="Silk.NET.Input.Extensions" Version="2.21.0" />
<PackageReference Include="Silk.NET.Maths" Version="2.21.0" />
<PackageReference Include="Silk.NET.OpenGL" Version="2.21.0" />
<PackageReference Include="Silk.NET.Windowing" Version="2.21.0" />
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.7" />
<PackageReference Include="Ceras" Version="4.1.7" />
</ItemGroup>
</Project>