Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions build/Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class Build : NukeBuild

string FullSemVer => OctoVersionInfo.FullSemVer.Length <= 35
? OctoVersionInfo.FullSemVer
: OctoVersionInfo.FullSemVer[..35];
: OctoVersionInfo.FullSemVer[..35].TrimEnd('.');

Target Clean => _ => _
.Before(Restore)
Expand Down Expand Up @@ -133,4 +133,4 @@ void OverrideGitHubSemVer()
/// - Microsoft VisualStudio https://nuke.build/visualstudio
/// - Microsoft VSCode https://nuke.build/vscode
public static int Main() => Execute<Build>(x => x.Pack);
}
}
2 changes: 1 addition & 1 deletion build/_build.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Nuke.Common" Version="10.0.0" />
<PackageReference Include="Nuke.Common" Version="10.1.0" />
</ItemGroup>

<ItemGroup>
Expand Down