2 writes to _featureBand
Microsoft.NET.Sdk.WorkloadManifestReader (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.Sdk.WorkloadManifestReader (12)
SdkFeatureBand.cs (12)
32public bool IsPrerelease => !string.IsNullOrEmpty(_featureBand.Prerelease); 33public int Major => _featureBand.Major; 34public int Minor => _featureBand.Minor; 38return _featureBand.Equals(other._featureBand); 43return _featureBand.CompareTo(other._featureBand); 53return _featureBand.GetHashCode(); 58return _featureBand.ToString(); 63return new ReleaseVersion(_featureBand.Major, _featureBand.Minor, _featureBand.SdkFeatureBand).ToString();