1 write to ProductVersion
Microsoft.DotNet.Build.Manifest.Tests (1)
BuildModelFactoryTests.cs (1)
808ProductVersion = "1.0.0",
11 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)
321if (!string.Equals(refIdentity.ProductVersion, identity.ProductVersion, StringComparison.OrdinalIgnoreCase)) 323differences.Add($"ProductVersion: expected '{refIdentity.ProductVersion}', found '{identity.ProductVersion}'");
Microsoft.DotNet.Build.Manifest.Tests (2)
BuildModelFactoryTests.cs (2)
860result.Identity.ProductVersion.Should().Be(buildIdentityA.ProductVersion);