We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99ae520 commit 69e2000Copy full SHA for 69e2000
src/GitVersion.Core/VersionCalculation/SemanticVersioning/SemanticVersionPreReleaseTag.cs
@@ -84,10 +84,10 @@ public static implicit operator string(SemanticVersionPreReleaseTag preReleaseTa
84
85
public static implicit operator SemanticVersionPreReleaseTag(string preReleaseTag)
86
{
87
- return Parse(preReleaseTag);
+ return TryParse(preReleaseTag);
88
}
89
90
- public static SemanticVersionPreReleaseTag Parse(string preReleaseTag)
+ public static SemanticVersionPreReleaseTag TryParse(string preReleaseTag)
91
92
if (string.IsNullOrEmpty(preReleaseTag))
93
0 commit comments