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)
70public bool IsPrerelease => !string.IsNullOrEmpty(_featureBand.Prerelease); 71public int Major => _featureBand.Major; 72public int Minor => _featureBand.Minor; 76return _featureBand.Equals(other._featureBand); 81return _featureBand.CompareTo(other._featureBand); 91return _featureBand.GetHashCode(); 96return _featureBand.ToString(); 101return new ReleaseVersion(_featureBand.Major, _featureBand.Minor, _featureBand.SdkFeatureBand).ToString();