3 writes to _targetOutputsPerProject
MSBuild (3)
TaskHostBuildResponse.cs (3)
33
_targetOutputsPerProject
= targetOutputsPerProject;
126
_targetOutputsPerProject
= null;
135
_targetOutputsPerProject
= new List<Dictionary<string, TaskParameter>>(count);
8 references to _targetOutputsPerProject
MSBuild (8)
TaskHostBuildResponse.cs (8)
48
public List<Dictionary<string, TaskParameter>>? TargetOutputsPerProject =>
_targetOutputsPerProject
;
58
if (
_targetOutputsPerProject
is not null)
60
result = new List<IDictionary<string, ITaskItem[]>>(
_targetOutputsPerProject
.Count);
62
foreach (Dictionary<string, TaskParameter> projectOutputs in
_targetOutputsPerProject
)
121
bool hasOutputs =
_targetOutputsPerProject
is not null;
130
int count =
_targetOutputsPerProject
?.Count ?? 0;
140
_targetOutputsPerProject
.Add(dict!);
147
Dictionary<string, TaskParameter>? dict =
_targetOutputsPerProject
![i];