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