6 writes to Attributes
Microsoft.DotNet.Build.Manifest (6)
BlobArtifactModel.cs (1)
25Attributes = xml
BlobArtifactModelFactory.cs (1)
43Attributes = MSBuildListSplitter.GetNamedProperties(item.GetMetadata("ManifestArtifactData")),
PackageArtifactModel.cs (1)
68Attributes = xml
PackageArtifactModelFactory.cs (1)
35Attributes = MSBuildListSplitter.GetNamedProperties(item.GetMetadata("ManifestArtifactData")),
PdbArtifactModel.cs (1)
37Attributes = xml
PdbArtifactModelFactory.cs (1)
41Attributes = MSBuildListSplitter.GetNamedProperties(item.GetMetadata("ManifestArtifactData")),
29 references to Attributes
Microsoft.DotNet.Build.Manifest (29)
ArtifactModel.cs (18)
24get { return Attributes.GetOrDefault(nameof(Id)); } 25set { Attributes[nameof(Id)] = value; } 30get => Attributes.GetOrDefault(nameof(RepoOrigin)); 31set => Attributes[nameof(RepoOrigin)] = value; 38string val = Attributes.GetOrDefault(nameof(NonShipping)); 47Attributes[nameof(NonShipping)] = value.ToString(); 55string val = Attributes.GetOrDefault(nameof(Visibility)); 71Attributes[nameof(Visibility)] = value.ToString(); 80get => Attributes.GetOrDefault(nameof(PipelineArtifactPath)); 81set => Attributes[nameof(PipelineArtifactPath)] = value; 89get => Attributes.GetOrDefault(nameof(PipelineArtifactName)); 90set => Attributes[nameof(PipelineArtifactName)] = value; 102if (Attributes.Count() != other.Attributes.Count()) 107foreach (var localAttr in Attributes) 111if (other.Attributes.GetOrDefault(localAttr.Key) != null) 117other.Attributes.GetOrDefault(localAttr.Key), 133foreach (var item in Attributes)
BlobArtifactModel.cs (1)
19Attributes
PackageArtifactModel.cs (8)
24get { return Attributes.GetOrDefault(nameof(Version)); } 25set { Attributes[nameof(Version)] = value; } 30get { return Attributes.GetOrDefault(nameof(OriginBuildName)); } 31set { Attributes[nameof(OriginBuildName)] = value; } 38string val = Attributes.GetOrDefault(nameof(CouldBeStable)); 49Attributes.Remove(nameof(CouldBeStable)); 53Attributes[nameof(CouldBeStable)] = value.Value.ToString(); 62Attributes
PdbArtifactModel.cs (2)
21foreach (var item in Attributes) 31Attributes