2 writes to _featureBand
Microsoft.NET.Sdk.WorkloadManifestReader (2)
SdkFeatureBand.cs (2)
20
_featureBand
= new ReleaseVersion(fullVersion.Major, fullVersion.Minor, fullVersion.SdkFeatureBand);
29
_featureBand
= new ReleaseVersion(fullVersion.Major, fullVersion.Minor, fullVersion.SdkFeatureBand, formattedPrerelease);
12 references to _featureBand
Microsoft.NET.Sdk.WorkloadManifestReader (12)
SdkFeatureBand.cs (12)
70
public bool IsPrerelease => !string.IsNullOrEmpty(
_featureBand
.Prerelease);
71
public int Major =>
_featureBand
.Major;
72
public int Minor =>
_featureBand
.Minor;
76
return
_featureBand
.Equals(other.
_featureBand
);
81
return
_featureBand
.CompareTo(other.
_featureBand
);
91
return
_featureBand
.GetHashCode();
96
return
_featureBand
.ToString();
101
return new ReleaseVersion(
_featureBand
.Major,
_featureBand
.Minor,
_featureBand
.SdkFeatureBand).ToString();