36 lines
1.3 KiB
XML
36 lines
1.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="Game\state\states\**" />
|
|
<EmbeddedResource Remove="Game\state\states\**" />
|
|
<None Remove="Game\state\states\**" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Chickensoft.GodotNodeInterfaces" Version="2.4.0" />
|
|
<PackageReference Include="Chickensoft.Introspection" Version="2.2.0" />
|
|
<PackageReference Include="Chickensoft.Introspection.Generator" Version="2.2.0" />
|
|
<PackageReference Include="Chickensoft.LogicBlocks" Version="5.16.0" />
|
|
<PackageReference Include="Chickensoft.Serialization.Godot" Version="0.7.6" />
|
|
<PackageReference Include="GodotSharp.SourceGenerators" Version="2.6.0-250131-2115.Release" />
|
|
<PackageReference Include="SimpleInjector" Version="5.5.0" />
|
|
<PackageReference Include="System.IO.Abstractions" Version="22.0.11" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Zennysoft.Game.Abstractions\Zennysoft.Game.Abstractions.csproj" />
|
|
<ProjectReference Include="..\Zennysoft.Game.Godot.Implementation\Zennysoft.Game.Implementation.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Map\" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|