1 write to Identity
Microsoft.DotNet.VersionTools (1)
BuildManifest\Model\BuildModel.cs (1)
17Identity = identity;
19 references to Identity
Microsoft.DotNet.Build.Tasks.Feed.Tests (16)
BuildModelFactoryTests.cs (16)
175model.Identity.Attributes.Should().Contain("AzureDevOpsRepository", _normalizedTestAzdoRepoUri); 298model.Identity.Attributes.Should().Contain(attributeName, _normalizedTestInitialLocation); 420modelFromItems.Identity.Name, 421modelFromItems.Identity.BuildId, 422modelFromItems.Identity.Branch, 423modelFromItems.Identity.Commit, 424modelFromItems.Identity.Attributes.Select(kv => $"{kv.Key}={kv.Value}").ToArray(), 425modelFromItems.Identity.IsStable, 426modelFromItems.Identity.PublishingVersion, 427modelFromItems.Identity.IsReleaseOnlyPackageVersion, 437modelFromItems.Identity.Name.Should().Be(_testAzdoRepoUri); 438modelFromItems.Identity.BuildId.Should().Be(_testAzdoBuildId); 439modelFromItems.Identity.Commit.Should().Be(_testBuildCommit); 440modelFromItems.Identity.PublishingVersion.Should().Be(VersionTools.BuildManifest.Model.PublishingInfraVersion.Latest); 441modelFromItems.Identity.IsReleaseOnlyPackageVersion.Should().BeFalse(); 442modelFromItems.Identity.IsStable.Should().BeTrue();
Microsoft.DotNet.VersionTools (3)
BuildManifest\Model\BuildModel.cs (2)
26public override string ToString() => $"Build {Identity}"; 30Identity.ToXmlAttributes(),
BuildManifest\Model\OrchestratedBuildModel.cs (1)
39Builds.Add(build.Identity);