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)
1078
if (
_projectStartedEvents
.Count != 0)
1082
foreach (KeyValuePair<int, BuildEventArgs> projectStartedEvent in
_projectStartedEvents
)
1299
telemetry.UnmatchedProjectStartedCount =
_projectStartedEvents
.Count;
2428
_projectStartedEvents
.Clear();
2714
BuildEventContext buildEventContext =
_projectStartedEvents
.TryGetValue(result.SubmissionId, out BuildEventArgs? buildEventArgs)
3123
if (
_projectStartedEvents
.TryGetValue(e.BuildEventContext!.SubmissionId, out var originalArgs))
3127
_projectStartedEvents
.Remove(e.BuildEventContext.SubmissionId);
3148
if (!
_projectStartedEvents
.ContainsKey(e.BuildEventContext!.SubmissionId))
3150
_projectStartedEvents
[e.BuildEventContext.SubmissionId] = e;