Skip to content
This repository was archived by the owner on Sep 30, 2023. It is now read-only.

Commit 28c70bb

Browse files
committed
fix -1
1 parent cbe1406 commit 28c70bb

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Commands/BuildDeps.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ protected override int Execute()
7575
continue;
7676
}
7777

78-
ConsoleWriter.WriteProgress($"{dep.ToBuildString(),-49} {$"{built}/{modulesToBuild.Count - 1}",10}");
78+
ConsoleWriter.WriteProgress($"{dep.ToBuildString(),-49} {$"{built}/{modulesToBuild.Count}",10}");
7979
try
8080
{
8181
if (!builder.Build(dep))

Tests/Tests.csproj

+3-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,9 @@
106106
<Name>Common</Name>
107107
</ProjectReference>
108108
</ItemGroup>
109-
<ItemGroup />
109+
<ItemGroup>
110+
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
111+
</ItemGroup>
110112
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
111113
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
112114
Other similar extension points exist, see Microsoft.Common.targets.

0 commit comments

Comments
 (0)