18 references to Bag
Microsoft.Build.Tasks.Core (16)
LC.cs (14)
28
set =>
Bag
[nameof(Sources)] = value;
29
get => (ITaskItem[])
Bag
[nameof(Sources)];
38
set =>
Bag
[nameof(OutputLicense)] = value;
39
get => (ITaskItem)
Bag
[nameof(OutputLicense)];
48
set =>
Bag
[nameof(LicenseTarget)] = value;
49
get => (ITaskItem)
Bag
[nameof(LicenseTarget)];
58
set =>
Bag
[nameof(OutputDirectory)] = value;
59
get => (string)
Bag
[nameof(OutputDirectory)];
68
set =>
Bag
[nameof(ReferencedAssemblies)] = value;
69
get => (ITaskItem[])
Bag
[nameof(ReferencedAssemblies)];
77
set =>
Bag
[nameof(NoLogo)] = value;
83
set =>
Bag
[nameof(SdkToolsPath)] = value;
84
get => (string)
Bag
[nameof(SdkToolsPath)];
163
commandLine.AppendWhenTrue("/nologo",
Bag
, "NoLogo");
ToolTaskExtension.cs (2)
77
object obj =
Bag
[parameterName];
87
object obj =
Bag
[parameterName];
Microsoft.Build.Tasks.UnitTests (2)
ToolTaskExtension_Tests.cs (2)
85
t.
Bag
["Key"] = true;
98
t.
Bag
["Key"] = 5;