Skip to content

Commit 223b11c

Browse files
committed
Fix RT.PostBuild being included as NuGet package in locallibs configuration
1 parent 18ec8c1 commit 223b11c

2 files changed

Lines changed: 9 additions & 5 deletions

File tree

Src/RT.CommandLine.csproj

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,18 @@
1515
<Configurations>Debug-Nuget;Debug-locallibs;Release</Configurations>
1616
</PropertyGroup>
1717

18-
<ItemGroup>
19-
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
20-
<PackageReference Include="RT.PostBuild" Version="2.0.1782" />
21-
</ItemGroup>
2218
<ItemGroup Condition="'$(Configuration)' == 'Debug-locallibs'">
2319
<ProjectReference Include="..\..\RT.Util\RT.Util.Core\RT.Util.Core.csproj" />
20+
<ProjectReference Include="..\..\RT.Util\RT.PostBuild\RT.PostBuild.csproj" />
2421
</ItemGroup>
22+
2523
<ItemGroup Condition="'$(Configuration)' != 'Debug-locallibs'">
2624
<PackageReference Include="RT.Util.Core" Version="2.0.1782" />
25+
<PackageReference Include="RT.PostBuild" Version="2.0.1782" />
2726
</ItemGroup>
27+
28+
<ItemGroup>
29+
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
30+
</ItemGroup>
31+
2832
</Project>

0 commit comments

Comments
 (0)