88e367a406
This base implementation is still very barebones but it defines the path for how exporting will work (at least when embedding the .NET runtime). Many manual steps are still needed, which should be automatized in the future. For example, in addition to the API assemblies, now you also need to copy the GodotPlugins assembly to each game project.
41 lines
1.9 KiB
XML
41 lines
1.9 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<LangVersion>8.0</LangVersion>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<Description>Core C# source generator for Godot projects.</Description>
|
|
<Authors>Godot Engine contributors</Authors>
|
|
|
|
<PackageId>Godot.SourceGenerators</PackageId>
|
|
<Version>4.0.0</Version>
|
|
<PackageVersion>$(PackageVersion_Godot_SourceGenerators)</PackageVersion>
|
|
<RepositoryUrl>https://github.com/godotengine/godot/tree/master/modules/mono/editor/Godot.NET.Sdk/Godot.SourceGenerators</RepositoryUrl>
|
|
<PackageProjectUrl>$(RepositoryUrl)</PackageProjectUrl>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
<!-- Do not include the generator as a lib dependency -->
|
|
<IncludeBuildOutput>false</IncludeBuildOutput>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="3.8.0" PrivateAssets="all" />
|
|
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.3" PrivateAssets="all" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<!-- Package the generator in the analyzer directory of the nuget package -->
|
|
<None Include="$(OutputPath)\$(AssemblyName).dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" />
|
|
|
|
<!-- Package the props file -->
|
|
<None Include="Godot.SourceGenerators.props" Pack="true" PackagePath="build" Visible="true" />
|
|
</ItemGroup>
|
|
|
|
<Target Name="CopyNupkgToSConsOutputDir" AfterTargets="Pack">
|
|
<PropertyGroup>
|
|
<GodotSourceRootPath>$(SolutionDir)\..\..\..\..\</GodotSourceRootPath>
|
|
<GodotOutputDataDir>$(GodotSourceRootPath)\bin\GodotSharp\</GodotOutputDataDir>
|
|
</PropertyGroup>
|
|
<Copy SourceFiles="$(PackageOutputPath)$(PackageId).$(PackageVersion).nupkg" DestinationFolder="$(GodotOutputDataDir)Tools\nupkgs\" />
|
|
</Target>
|
|
</Project>
|