Ensure that if user installes Godot.Sharp.Extended, also gets Godot.Sharp.Extended.Generators package.
30 lines
1.3 KiB
XML
30 lines
1.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
|
|
<!-- Nuget Tags -->
|
|
<IsPackable>true</IsPackable>
|
|
<PackageId>Godot.Sharp.Extended.Generators</PackageId>
|
|
<AssemblyTitle>Godot Sharp Extended</AssemblyTitle>
|
|
<Version>1.0.0</Version>
|
|
<Authors>Mario Steele</Authors>
|
|
<Description>Extened functionality for Godot Game Engine</Description>
|
|
<Copyright>Copyright (c) 2025 Mario Steele</Copyright>
|
|
<PackageProjectUrl>https://github.com/eumario/Godot.Sharp.Extended</PackageProjectUrl>
|
|
<RepositoryUrl>https://github.com/eumario/Godot.Sharp.Extended</RepositoryUrl>
|
|
<RepositoryType>git</RepositoryType>
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
<PackageTags>godot, generator</PackageTags>
|
|
<PackageReleaseNotes>Built for Godot 4.x</PackageReleaseNotes>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="GodotSharp" Version="4.4.0" />
|
|
<PackageRefernece Include="Godot.Sharp.Extended.Generators" Version="1.0.0"/>
|
|
</ItemGroup>
|
|
|
|
</Project>
|