2025-10-25 05:22:01 +08:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<CopyLocalLockFileAssembliesName>true</CopyLocalLockFileAssembliesName>
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
|
<EnableDynamicLoading>true</EnableDynamicLoading>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Reference Include="UnrealSharp">
|
|
|
|
|
<HintPath>..\..\Plugins\UnrealSharp\Binaries\Managed\net9.0\UnrealSharp.dll</HintPath>
|
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Include="UnrealSharp.Core">
|
|
|
|
|
<HintPath>..\..\Plugins\UnrealSharp\Binaries\Managed\net9.0\UnrealSharp.Core.dll</HintPath>
|
|
|
|
|
</Reference>
|
|
|
|
|
<Analyzer Include="..\..\Plugins\UnrealSharp\Binaries\Managed\UnrealSharp.SourceGenerators.dll" />
|
2025-10-26 15:46:04 +08:00
|
|
|
<ProjectReference Include="..\BusyRabbit.Glue\BusyRabbit.Glue.csproj">
|
|
|
|
|
<OutputItemType>Analyzer</OutputItemType>
|
|
|
|
|
</ProjectReference>
|
2025-10-25 05:22:01 +08:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|