Skip to content

Commit 1fc5416

Browse files
committed
Fixed wrong version building in the build tool
1 parent 7931801 commit 1fc5416

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/build/Build.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ internal class Build : NukeBuild
142142
}
143143

144144
_workingVersion =
145-
new System.Version(version.Major, version.Minor + 1, version.Build)
145+
new System.Version(version.Major, version.Minor + 1, 0)
146146
.ToString();
147147
});
148148

0 commit comments

Comments
 (0)