1 write to _projectStartedEvents
Microsoft.Build (1)
BackEnd\BuildManager\BuildManager.cs (1)
314_projectStartedEvents = new Dictionary<int, BuildEventArgs>();
9 references to _projectStartedEvents
Microsoft.Build (9)
BackEnd\BuildManager\BuildManager.cs (9)
1145if (_projectStartedEvents.Count != 0) 1149foreach (KeyValuePair<int, BuildEventArgs> projectStartedEvent in _projectStartedEvents) 1368telemetry.UnmatchedProjectStartedCount = _projectStartedEvents.Count; 2504_projectStartedEvents.Clear(); 2792BuildEventContext buildEventContext = _projectStartedEvents.TryGetValue(result.SubmissionId, out BuildEventArgs? buildEventArgs) 3201if (_projectStartedEvents.TryGetValue(e.BuildEventContext!.SubmissionId, out var originalArgs)) 3205_projectStartedEvents.Remove(e.BuildEventContext.SubmissionId); 3226if (!_projectStartedEvents.ContainsKey(e.BuildEventContext!.SubmissionId)) 3228_projectStartedEvents[e.BuildEventContext.SubmissionId] = e;