1 write to _projectStartedEvents
Microsoft.Build (1)
BackEnd\BuildManager\BuildManager.cs (1)
311_projectStartedEvents = new Dictionary<int, BuildEventArgs>();
9 references to _projectStartedEvents
Microsoft.Build (9)
BackEnd\BuildManager\BuildManager.cs (9)
1078if (_projectStartedEvents.Count != 0) 1082foreach (KeyValuePair<int, BuildEventArgs> projectStartedEvent in _projectStartedEvents) 1299telemetry.UnmatchedProjectStartedCount = _projectStartedEvents.Count; 2428_projectStartedEvents.Clear(); 2714BuildEventContext buildEventContext = _projectStartedEvents.TryGetValue(result.SubmissionId, out BuildEventArgs? buildEventArgs) 3123if (_projectStartedEvents.TryGetValue(e.BuildEventContext!.SubmissionId, out var originalArgs)) 3127_projectStartedEvents.Remove(e.BuildEventContext.SubmissionId); 3148if (!_projectStartedEvents.ContainsKey(e.BuildEventContext!.SubmissionId)) 3150_projectStartedEvents[e.BuildEventContext.SubmissionId] = e;