fix: include NuGet project in release source
Publish UPM package / publish (push) Failing after 2s
Publish NuGet packages / publish (push) Successful in 31s

This commit is contained in:
2026-09-05 04:13:14 +08:00
parent f9c249a4d1
commit c44a7e6dda
2 changed files with 23 additions and 0 deletions
+4
View File
@@ -30,6 +30,8 @@
/[Aa]ssets/Plugins/Editor/JetBrains*
# Jetbrains Rider personal-layer settings
*.DotSettings.user
!DotNet~/*.csproj
!DotNet~/**/*.csproj
/DotNet~/**/[Bb]in/
/DotNet~/**/[Oo]bj/
/Godot~/**/[Bb]in/
@@ -116,3 +118,5 @@ InitTestScene*.unity*
/Tools~/**/[Oo]bj/
*.user
*.DotSettings.user
!DotNet~/*.csproj
!DotNet~/**/*.csproj
+19
View File
@@ -0,0 +1,19 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<AssemblyName>ShrinkEventBus.Runtime</AssemblyName>
<RootNamespace>ShrinkEventBus</RootNamespace>
<PackageId>ShrinkSDK.EventBus</PackageId>
<Version>2.1.0</Version>
<Description>ShrinkSDK typed event bus runtime.</Description>
<ShrinkCodeGenEnabled>false</ShrinkCodeGenEnabled>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\Runtime\**\*.cs"
Exclude="..\Runtime\ShrinkMonoEventScope.cs" />
<PackageReference Include="UniTask" Version="2.5.10" />
<PackageReference Include="ShrinkSDK.CodeGen" Version="0.1.0" PrivateAssets="compile;runtime;contentfiles;native" />
<PackageReference Include="ShrinkSDK.Runtime.Abstractions" Version="0.1.0" />
</ItemGroup>
</Project>