1 write to eventSources
Microsoft.Build.Engine (1)
Engine\EngineLoggingServicesInProc.cs (1)
44this.eventSources = new Dictionary<int, EventSource>();
11 references to eventSources
Microsoft.Build.Engine (11)
Engine\EngineLoggingServicesInProc.cs (11)
72ErrorUtilities.VerifyThrow(eventSources.ContainsKey(loggerId), "Logger Id should be registered"); 74eventSources[loggerId].RaiseStronglyTypedEvent(nodeLoggingEvent.BuildEvent); 79foreach (KeyValuePair<int, EventSource> eventSource in eventSources) 115if (eventSources.ContainsKey(LOCAL_FORWARDING_EVENTSOURCE)) 117eventSources[LOCAL_FORWARDING_EVENTSOURCE].RaiseStronglyTypedEvent(buildEventArgs); 126ErrorUtilities.VerifyThrow(!eventSources.ContainsKey(loggerId), "Should not see duplicate logger ids"); 127eventSources[loggerId] = eventSource; 132if (eventSources.ContainsKey(loggerId)) 134eventSources[loggerId].UnregisterAllLoggers(); 135eventSources.Remove(loggerId); 144foreach (EventSource eventSource in eventSources.Values)