1 write to ProductVersion
Microsoft.DotNet.Build.Manifest.Tests (1)
BuildModelFactoryTests.cs (1)
808
ProductVersion
= "1.0.0",
11 references to ProductVersion
Microsoft.DotNet.Build.Manifest (9)
BuildIdentity.cs (5)
27
nameof(
ProductVersion
),
53
get { return Attributes.GetOrDefault(nameof(
ProductVersion
)); }
54
set { Attributes[nameof(
ProductVersion
)] = value; }
236
if (!string.IsNullOrEmpty(
ProductVersion
))
238
s += $" {
ProductVersion
}";
BuildModelFactory.cs (4)
321
if (!string.Equals(refIdentity.
ProductVersion
, identity.
ProductVersion
, StringComparison.OrdinalIgnoreCase))
323
differences.Add($"ProductVersion: expected '{refIdentity.
ProductVersion
}', found '{identity.
ProductVersion
}'");
Microsoft.DotNet.Build.Manifest.Tests (2)
BuildModelFactoryTests.cs (2)
860
result.Identity.
ProductVersion
.Should().Be(buildIdentityA.
ProductVersion
);