9 references to ProductVersion
Microsoft.DotNet.Build.Manifest (9)
BuildIdentity.cs (5)
27nameof(ProductVersion), 53get { return Attributes.GetOrDefault(nameof(ProductVersion)); } 54set { Attributes[nameof(ProductVersion)] = value; } 236if (!string.IsNullOrEmpty(ProductVersion)) 238s += $" {ProductVersion}";
BuildModelFactory.cs (4)
320if (!string.Equals(refIdentity.ProductVersion, identity.ProductVersion, StringComparison.OrdinalIgnoreCase)) 322differences.Add($"ProductVersion: expected '{refIdentity.ProductVersion}', found '{identity.ProductVersion}'");