forked from LukeZurg22/SKSSL
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSKSSL.csproj
More file actions
36 lines (32 loc) · 1.64 KB
/
SKSSL.csproj
File metadata and controls
36 lines (32 loc) · 1.64 KB
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
33
34
35
36
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<NoWarn>$(NoWarn);SYSLIB0011</NoWarn>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RootNamespace>SKSSL</RootNamespace>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<PackageId>SKSSL</PackageId>
<Version>1.4.0</Version>
<Authors>LukeZurg22</Authors>
<Description>Shared general game engine built on Monogame and GumUI.</Description>
<PackageTags>logging, ecs, yaml, parsing</PackageTags>
<RepositoryUrl>https://github.com/LukeZurg22/SKSSL</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="FlatRedBall.GumCommon" Version="2025.11.30.1" />
<PackageReference Include="Gum.MonoGame" Version="2025.11.30.1" />
<PackageReference Include="MemoryPack" Version="1.21.4" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="10.0.1" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.1" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="10.0.1" />
<PackageReference Include="Microsoft.Testing.Platform" Version="1.7.3" />
<PackageReference Include="Microsoft.TestPlatform.TestHost" Version="17.14.1" />
<PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.4.1" />
<PackageReference Include="RandN" Version="0.5.0" />
<PackageReference Include="VYaml" Version="1.2.0" />
</ItemGroup>
<ItemGroup>
<Folder Include="Networking\" />
</ItemGroup>
</Project>