1 write to ProductVersion
Microsoft.DotNet.Build.Tasks.Feed.Tests (1)
BuildModelFactoryTests.cs (1)
837ProductVersion = "1.0.0",
9 references to ProductVersion
Microsoft.DotNet.Build.Tasks.Feed (2)
src\BuildModelFactory.cs (2)
276!string.Equals(refIdentity.ProductVersion, identity.ProductVersion, StringComparison.OrdinalIgnoreCase) ||
Microsoft.DotNet.Build.Tasks.Feed.Tests (2)
BuildModelFactoryTests.cs (2)
889result.Identity.ProductVersion.Should().Be(buildIdentityA.ProductVersion);
Microsoft.DotNet.VersionTools (5)
BuildManifest\Model\BuildIdentity.cs (5)
27nameof(ProductVersion), 53get { return Attributes.GetOrDefault(nameof(ProductVersion)); } 54set { Attributes[nameof(ProductVersion)] = value; } 236if (!string.IsNullOrEmpty(ProductVersion)) 238s += $" {ProductVersion}";