1 write to _projectStartedEvents
Microsoft.Build (1)
BackEnd\BuildManager\BuildManager.cs (1)
313
_projectStartedEvents
= new Dictionary<int, BuildEventArgs>();
9 references to _projectStartedEvents
Microsoft.Build (9)
BackEnd\BuildManager\BuildManager.cs (9)
1101
if (
_projectStartedEvents
.Count != 0)
1105
foreach (KeyValuePair<int, BuildEventArgs> projectStartedEvent in
_projectStartedEvents
)
1324
telemetry.UnmatchedProjectStartedCount =
_projectStartedEvents
.Count;
2446
_projectStartedEvents
.Clear();
2732
BuildEventContext buildEventContext =
_projectStartedEvents
.TryGetValue(result.SubmissionId, out BuildEventArgs? buildEventArgs)
3141
if (
_projectStartedEvents
.TryGetValue(e.BuildEventContext!.SubmissionId, out var originalArgs))
3145
_projectStartedEvents
.Remove(e.BuildEventContext.SubmissionId);
3166
if (!
_projectStartedEvents
.ContainsKey(e.BuildEventContext!.SubmissionId))
3168
_projectStartedEvents
[e.BuildEventContext.SubmissionId] = e;