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)
48public List<Dictionary<string, TaskParameter>>? TargetOutputsPerProject => _targetOutputsPerProject; 58if (_targetOutputsPerProject is not null) 60result = new List<IDictionary<string, ITaskItem[]>>(_targetOutputsPerProject.Count); 62foreach (Dictionary<string, TaskParameter> projectOutputs in _targetOutputsPerProject) 121bool hasOutputs = _targetOutputsPerProject is not null; 130int count = _targetOutputsPerProject?.Count ?? 0; 140_targetOutputsPerProject.Add(dict!); 147Dictionary<string, TaskParameter>? dict = _targetOutputsPerProject![i];