2 writes to IsStable
Microsoft.DotNet.Build.Manifest (1)
BuildModelFactory.cs (1)
167
IsStable
= isStableBuild,
Microsoft.DotNet.Build.Manifest.Tests (1)
BuildModelFactoryTests.cs (1)
807
IsStable
= false,
9 references to IsStable
Microsoft.DotNet.Build.Manifest (6)
BuildIdentity.cs (2)
167
string value = Attributes.GetOrDefault(nameof(
IsStable
));
181
Attributes[nameof(
IsStable
)] = value.ToString().ToLower();
BuildModelFactory.cs (4)
317
if (refIdentity.
IsStable
!= identity.
IsStable
)
319
differences.Add($"IsStable: expected '{refIdentity.
IsStable
}', found '{identity.
IsStable
}'");
Microsoft.DotNet.Build.Manifest.Tests (3)
BuildModelFactoryTests.cs (3)
516
modelFromItems.Identity.
IsStable
.Should().BeTrue();
859
result.Identity.
IsStable
.Should().Be(buildIdentityA.
IsStable
);