Skip to content

Commit

Permalink
Fix split printing
Browse files Browse the repository at this point in the history
  • Loading branch information
keyboardDrummer committed Jan 13, 2025
1 parent 7f9f784 commit ccd5110
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Source/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<!-- Target framework and package configuration -->
<PropertyGroup>
<Version>3.4.3</Version>
<Version>3.4.4</Version>
<TargetFramework>net6.0</TargetFramework>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<Authors>Boogie</Authors>
Expand Down
2 changes: 1 addition & 1 deletion Source/VCGeneration/Splits/Split.cs
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ private void PrintSplit() {
Thread.Sleep(100);
}

var prefix = this is ManualSplit manualSplit ? manualSplit.Token.ShortName : "";
var prefix = this is ManualSplit manualSplit ? "-" + manualSplit.SplitIndex + manualSplit.Token.ShortName : "";
var name = Implementation.Name + prefix;
using var writer = printToConsole
? new TokenTextWriter("<console>", Options.OutputWriter, false, Options.PrettyPrint, Options)
Expand Down

0 comments on commit ccd5110

Please sign in to comment.