feat: aetherbind, first source generator

This commit is contained in:
redglow
2026-07-18 17:05:03 +02:00
parent 4ce99d9486
commit aae9c083d9
69 changed files with 210 additions and 156 deletions
+38 -32
View File
@@ -1,34 +1,40 @@
<Project Sdk="Godot.NET.Sdk/4.7.0">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework Condition=" '$(GodotTargetPlatform)' == 'android' ">net9.0</TargetFramework>
<EnableDynamicLoading>true</EnableDynamicLoading>
<RootNamespace>GodotHostTest</RootNamespace>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="R3" Version="1.3.1" />
</ItemGroup>
<ItemGroup>
<Reference Include="OwofGames.GodotHost">
<HintPath>..\OwofGames.Godot\OwofGames.GodotHost\bin\Debug\net8.0\OwofGames.GodotHost.dll</HintPath>
</Reference>
<Reference Include="OwofGames.GodotLogger">
<HintPath>..\OwofGames.Godot\OwofGames.GodotHost\bin\Debug\net8.0\OwofGames.GodotLogger.dll</HintPath>
</Reference>
<PackageReference Include="Microsoft.Extensions.Configuration.CommandLine" Version="10.0.0"/>
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="10.0.0"/>
<PackageReference Include="Microsoft.Extensions.Configuration.FileExtensions" Version="10.0.0"/>
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="10.0.0"/>
<PackageReference Include="Microsoft.Extensions.FileProviders.Composite" Version="10.0.0"/>
<PackageReference Include="Microsoft.Extensions.FileProviders.Physical" Version="10.0.0"/>
<PackageReference Include="Microsoft.Extensions.Logging" Version="10.0.0"/>
<PackageReference Include="Microsoft.Extensions.Logging.Configuration" Version="10.0.0"/>
<Reference Include="OwofGames.GodotLume">
<HintPath>..\OwofGames.Godot\OwofGames.GodotLume\bin\Debug\net8.0\OwofGames.GodotLume.dll</HintPath>
</Reference>
<Reference Include="OwofGames.GodotLume.Microsoft.DependencyInjection">
<HintPath>..\OwofGames.Godot\OwofGames.GodotLume.Microsoft.DependencyInjection\bin\Debug\net8.0\OwofGames.GodotLume.Microsoft.DependencyInjection.dll</HintPath>
</Reference>
</ItemGroup>
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework Condition=" '$(GodotTargetPlatform)' == 'android' ">net9.0</TargetFramework>
<EnableDynamicLoading>true</EnableDynamicLoading>
<RootNamespace>GodotHostTest</RootNamespace>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="R3" Version="1.3.1"/>
</ItemGroup>
<ItemGroup>
<Reference Include="OwofGames.GodotHost">
<HintPath>..\OwofGames.Godot\OwofGames.GodotHost\bin\Debug\net8.0\OwofGames.GodotHost.dll</HintPath>
</Reference>
<Reference Include="OwofGames.GodotLogger">
<HintPath>..\OwofGames.Godot\OwofGames.GodotHost\bin\Debug\net8.0\OwofGames.GodotLogger.dll</HintPath>
</Reference>
<PackageReference Include="Microsoft.Extensions.Configuration.CommandLine" Version="10.0.0"/>
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="10.0.0"/>
<PackageReference Include="Microsoft.Extensions.Configuration.FileExtensions" Version="10.0.0"/>
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="10.0.0"/>
<PackageReference Include="Microsoft.Extensions.FileProviders.Composite" Version="10.0.0"/>
<PackageReference Include="Microsoft.Extensions.FileProviders.Physical" Version="10.0.0"/>
<PackageReference Include="Microsoft.Extensions.Logging" Version="10.0.0"/>
<PackageReference Include="Microsoft.Extensions.Logging.Configuration" Version="10.0.0"/>
<Reference Include="OwofGames.GodotLume">
<HintPath>..\OwofGames.Godot\OwofGames.GodotLume\bin\Debug\net8.0\OwofGames.GodotLume.dll</HintPath>
</Reference>
<Reference Include="OwofGames.GodotLume.Microsoft.DependencyInjection">
<HintPath>..\OwofGames.Godot\OwofGames.GodotLume.Microsoft.DependencyInjection\bin\Debug\net8.0\OwofGames.GodotLume.Microsoft.DependencyInjection.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Content Include="addons\AetherBind\README.md"/>
</ItemGroup>
<ItemGroup>
<Analyzer Include="..\OwofGames.Godot\OwofGames.AetherBind.SourceGenerators\bin\Debug\netstandard2.0\OwofGames.AetherBind.SourceGenerators.dll"/>
</ItemGroup>
</Project>