Skip to content

Commit

Permalink
Remove '+' character from SemVer when generating nuget package
Browse files Browse the repository at this point in the history
  • Loading branch information
Jericho committed Aug 7, 2024
1 parent e8bed59 commit e8d0ae4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ Task("Create-NuGet-Package")
MSBuildSettings = new DotNetMSBuildSettings
{
PackageReleaseNotes = releaseNotesUrl,
PackageVersion = versionInfo.FullSemVer
PackageVersion = versionInfo.FullSemVer.Replace('+', '-')
}
};

Expand Down

0 comments on commit e8d0ae4

Please sign in to comment.