2 writes to _featureBand
Microsoft.NET.Build.Tasks (2)
SdkFeatureBand.cs (2)
19
_featureBand
= new ReleaseVersion(fullVersion.Major, fullVersion.Minor, fullVersion.SdkFeatureBand);
28
_featureBand
= new ReleaseVersion(fullVersion.Major, fullVersion.Minor, fullVersion.SdkFeatureBand, formattedPrerelease);
12 references to _featureBand
Microsoft.NET.Build.Tasks (12)
SdkFeatureBand.cs (12)
32
public bool IsPrerelease => !string.IsNullOrEmpty(
_featureBand
.Prerelease);
33
public int Major =>
_featureBand
.Major;
34
public int Minor =>
_featureBand
.Minor;
38
return
_featureBand
.Equals(other.
_featureBand
);
43
return
_featureBand
.CompareTo(other.
_featureBand
);
53
return
_featureBand
.GetHashCode();
58
return
_featureBand
.ToString();
63
return new ReleaseVersion(
_featureBand
.Major,
_featureBand
.Minor,
_featureBand
.SdkFeatureBand).ToString();