1 write to _projectStartedEvents
Microsoft.Build (1)
BackEnd\BuildManager\BuildManager.cs (1)
310
_projectStartedEvents
= new Dictionary<int, BuildEventArgs>();
8 references to _projectStartedEvents
Microsoft.Build (8)
BackEnd\BuildManager\BuildManager.cs (8)
1006
if (
_projectStartedEvents
.Count != 0)
1010
foreach (KeyValuePair<int, BuildEventArgs> projectStartedEvent in
_projectStartedEvents
)
2199
_projectStartedEvents
.Clear();
2478
BuildEventContext buildEventContext =
_projectStartedEvents
.TryGetValue(result.SubmissionId, out BuildEventArgs? buildEventArgs)
2889
if (
_projectStartedEvents
.TryGetValue(e.BuildEventContext!.SubmissionId, out var originalArgs))
2893
_projectStartedEvents
.Remove(e.BuildEventContext.SubmissionId);
2914
if (!
_projectStartedEvents
.ContainsKey(e.BuildEventContext!.SubmissionId))
2916
_projectStartedEvents
[e.BuildEventContext.SubmissionId] = e;