-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstreaming.csproj
32 lines (30 loc) · 1.04 KB
/
streaming.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
29
30
31
32
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0-windows</TargetFramework>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<!-- NuGet packages -->
<ItemGroup>
<PackageReference Include="Silk.NET.Core" Version="2.19.0" />
<PackageReference Include="Silk.NET.Input" Version="2.19.0" />
<PackageReference Include="Silk.NET.OpenGL" Version="2.19.0" />
<PackageReference Include="Silk.NET.Windowing" Version="2.19.0" />
<PackageReference Include="SkiaSharp" Version="2.88.8" />
</ItemGroup>
<!-- Textures -->
<ItemGroup>
<None Update="ground64.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="ground128.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="ground256.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="ground512.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>