Added core functionality that was from the old Godot.Sharp.Extra library. Not all functions, only functions that were considered worth porting.
14 lines
375 B
XML
14 lines
375 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<PackageId>Godot.Sharp.Extended</PackageId>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="GodotSharp" Version="4.4.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|