-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVoxelWorld.csproj
More file actions
31 lines (26 loc) · 983 Bytes
/
VoxelWorld.csproj
File metadata and controls
31 lines (26 loc) · 983 Bytes
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
29
30
31
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="FontStashSharp" Version="1.3.7" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="OpenTK" Version="5.0.0-pre.11" />
<PackageReference Include="StbImageSharp" Version="2.27.14" />
<PackageReference Include="StbImageWriteSharp" Version="1.16.7" />
</ItemGroup>
<ItemGroup>
<Content Include="resources\**\*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<Using Include="System.Diagnostics" />
<Using Include="System.IO.Compression" />
<Using Include="System.Runtime.InteropServices" />
</ItemGroup>
</Project>