6 types derived from BuildEventArgs
Microsoft.Build.Engine.UnitTests (1)
BackEnd\EventSourceSink_Tests.cs (1)
338internal sealed class GenericBuildEventArgs : BuildEventArgs
Microsoft.Build.Framework (3)
BuildCheck\BuildCheckEventArgs.cs (1)
16internal abstract class BuildCheckEventArgs : BuildEventArgs
LazyFormattedBuildEventArgs.cs (1)
14public class LazyFormattedBuildEventArgs : BuildEventArgs
TelemetryEventArgs.cs (1)
15public sealed class TelemetryEventArgs : BuildEventArgs
Microsoft.Build.Framework.UnitTests (2)
CustomEventArgSerialization_Tests.cs (1)
20internal sealed class GenericBuildEventArg : BuildEventArgs
EventArgs_Tests.cs (1)
129internal sealed class GenericBuildEventArgs : BuildEventArgs
262 references to BuildEventArgs
Microsoft.Build (153)
BackEnd\BuildManager\BuildManager.cs (5)
204private readonly Dictionary<int, BuildEventArgs> _projectStartedEvents; 303_projectStartedEvents = new Dictionary<int, BuildEventArgs>(); 992foreach (KeyValuePair<int, BuildEventArgs> projectStartedEvent in _projectStartedEvents) 2436BuildEventContext buildEventContext = _projectStartedEvents.TryGetValue(result.SubmissionId, out BuildEventArgs? buildEventArgs) 2847if (_projectStartedEvents.TryGetValue(e.BuildEventContext!.SubmissionId, out var originalArgs))
BackEnd\Components\Communications\LogMessagePacket.cs (1)
25internal LogMessagePacket(KeyValuePair<int, BuildEventArgs>? nodeBuildEvent)
BackEnd\Components\Logging\BuildEventArgTransportSink.cs (3)
125public void Consume(BuildEventArgs buildEvent) 136public void Consume(BuildEventArgs buildEvent, int sinkId) 150LogMessagePacket logPacket = new LogMessagePacket(new KeyValuePair<int, BuildEventArgs>(sinkId, buildEvent));
BackEnd\Components\Logging\CentralForwardingLogger.cs (1)
110private void EventSource_AnyEventRaised(object sender, BuildEventArgs buildEvent)
BackEnd\Components\Logging\EventRedirectorToSink.cs (1)
54void IEventRedirector.ForwardEvent(BuildEventArgs buildEvent)
BackEnd\Components\Logging\EventSourceSink.cs (5)
214public void Consume(BuildEventArgs buildEvent, int sinkId) 223public void Consume(BuildEventArgs buildEvent) 332public delegate void ArgsHandler<in TArgs>(TArgs e) where TArgs : BuildEventArgs; 344where TArgs : BuildEventArgs 382private void RaiseAnyEvent(BuildEventArgs buildEvent)
BackEnd\Components\Logging\ILoggingService.cs (3)
369void LogBuildEvent(BuildEventArgs buildEvent); 697void Consume(BuildEventArgs buildEvent, int sinkId); 702void Consume(BuildEventArgs buildEvent);
BackEnd\Components\Logging\LoggingContext.cs (1)
288internal void LogBuildEvent(BuildEventArgs buildEvent)
BackEnd\Components\Logging\LoggingService.cs (13)
989BuildEventArgs buildEvent = loggingPacket.NodeBuildEvent.Value.Value; 1245public void LogBuildEvent(BuildEventArgs buildEvent) 1375private static WarningsConfigKey GetWarningsConfigKey(BuildEventArgs buildEventArgs) 1554BuildEventArgs buildEventArgs = loggingEvent as BuildEventArgs ?? (loggingEvent as KeyValuePair<int, BuildEventArgs>?)?.Value; 1685if (loggingEvent is BuildEventArgs) 1689else if (loggingEvent is KeyValuePair<int, BuildEventArgs> loggingEventKeyValuePair) 1694loggingEventKeyValuePair = new KeyValuePair<int, BuildEventArgs>(loggingEventKeyValuePair.Key, buildEventArgs); 1704private void RouteBuildEvent(KeyValuePair<int, BuildEventArgs> nodeEvent) 1723private void RouteBuildEvent(BuildEventArgs eventArg) 1896private void TryRaiseProjectStartedEvent(BuildEventArgs args) 1913private void TryRaiseProjectFinishedEvent(BuildEventArgs args)
BackEnd\Components\RequestBuilder\IntrinsicTasks\ItemGroupLoggingHelper.cs (1)
53BuildEventArgs.ResourceStringFormatter = ResourceUtilities.FormatResourceStringIgnoreCodeAndKeyword;
BackEnd\Components\RequestBuilder\TaskHost.cs (1)
1113internal bool IsEventSerializable(BuildEventArgs e)
BackEnd\Node\OutOfProcNode.cs (1)
591BuildEventArgs buildEvent = logMessage.NodeBuildEvent.Value.Value;
BuildCheck\API\BuildCheckResult.cs (1)
30internal BuildEventArgs ToEventArgs(CheckResultSeverity severity)
BuildCheck\Infrastructure\BuildCheckBuildEventHandler.cs (20)
18private Dictionary<Type, Action<BuildEventArgs>> _eventHandlers; 19private readonly Dictionary<Type, Action<BuildEventArgs>> _eventHandlersFull; 20private readonly Dictionary<Type, Action<BuildEventArgs>> _eventHandlersRestore; 31{ typeof(BuildSubmissionStartedEventArgs), (BuildEventArgs e) => HandleBuildSubmissionStartedEvent((BuildSubmissionStartedEventArgs)e) }, 32{ typeof(ProjectEvaluationFinishedEventArgs), (BuildEventArgs e) => HandleProjectEvaluationFinishedEvent((ProjectEvaluationFinishedEventArgs)e) }, 33{ typeof(ProjectEvaluationStartedEventArgs), (BuildEventArgs e) => HandleProjectEvaluationStartedEvent((ProjectEvaluationStartedEventArgs)e) }, 34{ typeof(EnvironmentVariableReadEventArgs), (BuildEventArgs e) => HandleEnvironmentVariableReadEvent((EnvironmentVariableReadEventArgs)e) }, 35{ typeof(ProjectStartedEventArgs), (BuildEventArgs e) => HandleProjectStartedRequest((ProjectStartedEventArgs)e) }, 36{ typeof(ProjectFinishedEventArgs), (BuildEventArgs e) => HandleProjectFinishedRequest((ProjectFinishedEventArgs)e) }, 37{ typeof(BuildCheckTracingEventArgs), (BuildEventArgs e) => HandleBuildCheckTracingEvent((BuildCheckTracingEventArgs)e) }, 38{ typeof(BuildCheckAcquisitionEventArgs), (BuildEventArgs e) => HandleBuildCheckAcquisitionEvent((BuildCheckAcquisitionEventArgs)e) }, 39{ typeof(TaskStartedEventArgs), (BuildEventArgs e) => HandleTaskStartedEvent((TaskStartedEventArgs)e) }, 40{ typeof(TaskFinishedEventArgs), (BuildEventArgs e) => HandleTaskFinishedEvent((TaskFinishedEventArgs)e) }, 41{ typeof(TaskParameterEventArgs), (BuildEventArgs e) => HandleTaskParameterEvent((TaskParameterEventArgs)e) }, 42{ typeof(BuildFinishedEventArgs), (BuildEventArgs e) => HandleBuildFinishedEvent((BuildFinishedEventArgs)e) }, 43{ typeof(ProjectImportedEventArgs), (BuildEventArgs e) => HandleProjectImportedEvent((ProjectImportedEventArgs)e) }, 49{ typeof(BuildSubmissionStartedEventArgs), (BuildEventArgs e) => HandleBuildSubmissionStartedEvent((BuildSubmissionStartedEventArgs)e) }, 55public void HandleBuildEvent(BuildEventArgs e) 57if (_eventHandlers.TryGetValue(e.GetType(), out Action<BuildEventArgs>? handler)) 183private BuildEventContext GetBuildEventContext(BuildEventArgs e) => e.BuildEventContext
BuildCheck\Infrastructure\BuildCheckConnectorLogger.cs (1)
54private void EventSource_AnyEventRaised(object sender, BuildEventArgs e)
BuildCheck\Infrastructure\BuildCheckForwardingLogger.cs (1)
52public void EventSource_AnyEventRaised(object sender, BuildEventArgs buildEvent)
BuildCheck\Infrastructure\BuildCheckManagerProvider.cs (4)
600foreach (BuildEventArgs deferredArgs in list) 610private readonly Dictionary<int, List<BuildEventArgs>> _deferredEvalDiagnostics = new(); 634void IResultReporter.ReportResult(BuildEventArgs eventArgs, ICheckContext checkContext) 749void ReportResult(BuildEventArgs result, ICheckContext checkContext);
BuildCheck\Infrastructure\CheckContext\CheckDispatchingContext.cs (1)
30public void DispatchBuildEvent(BuildEventArgs buildEvent)
BuildCheck\Infrastructure\CheckContext\CheckLoggingContext.cs (1)
25public void DispatchBuildEvent(BuildEventArgs buildEvent)
BuildCheck\Infrastructure\CheckContext\ICheckContext.cs (2)
26/// Dispatch a <see cref="BuildEventArgs"/>. 28void DispatchBuildEvent(BuildEventArgs buildEvent);
BuildCheck\Infrastructure\CheckWrapper.cs (1)
158BuildEventArgs eventArgs = result.ToEventArgs(config.Severity);
Definition\ProjectCollection.cs (1)
2412private void AnyEventRaisedHandler(object sender, BuildEventArgs e)
Errors\InternalLoggerException.cs (6)
86BuildEventArgs e, 117e = (BuildEventArgs)info.GetValue("e", typeof(BuildEventArgs)); 187public BuildEventArgs BuildEventArgs 242BuildEventArgs e, 257private BuildEventArgs e;
Instance\TaskFactories\TaskHostTask.cs (1)
537BuildEventArgs buildEvent = logMessagePacket.NodeBuildEvent.Value.Value;
Instance\TaskFactoryLoggingHost.cs (1)
338internal bool IsEventSerializable(BuildEventArgs e)
Logging\BinaryLogger\BinaryLogger.cs (4)
354private void EventSource_AnyEventRaised(object sender, BuildEventArgs e) 359private void Write(BuildEventArgs e) 381private static bool DoNotWriteToBinlog(BuildEventArgs e) 386private void CollectImports(BuildEventArgs e)
Logging\BinaryLogger\BuildEventArgsReader.cs (40)
60typeof(BuildEventArgs).GetField("threadId", BindingFlags.Instance | BindingFlags.NonPublic); 62typeof(BuildEventArgs).GetField("senderName", BindingFlags.Instance | BindingFlags.NonPublic); 67/// <param name="binaryReader">The <see cref="BinaryReader"/> to read <see cref="BuildEventArgs"/> from.</param> 209/// The next <see cref="BuildEventArgs"/>. 212public BuildEventArgs? Read() 215BuildEventArgs? result = null; 299private BuildEventArgs? ReadBuildEventArgs(BinaryLogRecordKind recordKind) 522private BuildEventArgs ReadProjectImportedEventArgs() 553private BuildEventArgs ReadTargetSkippedEventArgs() 608private BuildEventArgs ReadBuildStartedEventArgs() 621private BuildEventArgs ReadBuildFinishedEventArgs() 635private BuildEventArgs ReadBuildSubmissionStartedEventArgs() 658private BuildEventArgs ReadProjectEvaluationStartedEventArgs() 675private BuildEventArgs ReadProjectEvaluationFinishedEventArgs() 733private BuildEventArgs ReadProjectStartedEventArgs() 777private BuildEventArgs ReadProjectFinishedEventArgs() 793private BuildEventArgs ReadTargetStartedEventArgs() 816private BuildEventArgs ReadTargetFinishedEventArgs() 838private BuildEventArgs ReadTaskStartedEventArgs() 860private BuildEventArgs ReadTaskFinishedEventArgs() 880private BuildEventArgs ReadBuildErrorEventArgs() 885BuildEventArgs e; 932private BuildEventArgs ReadBuildWarningEventArgs() 937BuildEventArgs e; 984private BuildEventArgs ReadBuildMessageEventArgs() 988BuildEventArgs e; 1038private BuildEventArgs ReadTaskCommandLineEventArgs() 1054private BuildEventArgs ReadTaskParameterEventArgs() 1080private BuildEventArgs ReadCriticalBuildMessageEventArgs() 1084BuildEventArgs e; 1130private BuildEventArgs ReadEnvironmentVariableReadEventArgs() 1145BuildEventArgs e = new EnvironmentVariableReadEventArgs( 1156private BuildEventArgs ReadResponseFileUsedEventArgs() 1166private BuildEventArgs ReadPropertyReassignmentEventArgs() 1189private BuildEventArgs ReadUninitializedPropertyReadEventArgs() 1205private BuildEventArgs ReadPropertyInitialValueSetEventArgs() 1250private BuildEventArgs ReadBuildCheckTracingEventArgs() 1263private BuildEventArgs ReadBuildCheckAcquisitionEventArgs() 1274private BuildEventArgs ReadBuildCanceledEventArgs() 1415private void SetCommonFields(BuildEventArgs buildEventArgs, BuildEventArgsFields fields)
Logging\BinaryLogger\BuildEventArgsWriter.cs (5)
144public void Write(BuildEventArgs e) 203private BinaryLogRecordKind WriteCore(BuildEventArgs e) 636private void WriteBuildEventArgsFields(BuildEventArgs e, bool writeMessage = true, bool writeLineAndColumn = false) 648private void WriteBaseFields(BuildEventArgs e, BuildEventArgsFieldFlags flags) 812private static BuildEventArgsFieldFlags GetBuildEventArgsFieldFlags(BuildEventArgs e, bool writeMessage = true)
Logging\BinaryLogger\EventArgsDispatcher.cs (1)
107public void Dispatch(BuildEventArgs buildEvent)
Logging\BinaryLogger\ProjectImportsCollector.cs (1)
176BuildEventArgs args = new BuildMessageEventArgs(
Logging\DistributedLoggers\ConfigurableForwardingLogger.cs (3)
334private void ForwardEvent(object sender, BuildEventArgs e) 369/// <param name="e">The <see cref="BuildEventArgs"/> to forward.</param> 370protected virtual void ForwardToCentralLogger(BuildEventArgs e)
Logging\NullCentralLogger.cs (1)
54public void AnyEventRaisedHandler(object sender, BuildEventArgs e)
Logging\ParallelLogger\ParallelConsoleLogger.cs (12)
421private void ShowErrorWarningSummary(IEnumerable<BuildEventArgs> listToProcess) 424var groupByProjectEntryPoint = new Dictionary<ErrorWarningSummaryDictionaryKey, List<BuildEventArgs>>(); 427foreach (BuildEventArgs errorWarningEventArgs in listToProcess) 455errorWarningEventListByTarget = new List<BuildEventArgs>(); 465foreach (KeyValuePair<ErrorWarningSummaryDictionaryKey, List<BuildEventArgs>> valuePair in groupByProjectEntryPoint) 492foreach (BuildEventArgs errorWarningEvent in valuePair.Value) 731/// <param name="e">A <see cref="BuildEventArgs"/> object containing information about the build event.</param> 733internal void WriteProperties(BuildEventArgs e, IEnumerable properties) 798/// <param name="e">A <see cref="BuildEventArgs"/> object containing information about the build event.</param> 800internal void WriteItems(BuildEventArgs e, IEnumerable items) 1011internal string FindLogOutputProperties(BuildEventArgs e) 1361private bool WriteTargetMessagePrefix(BuildEventArgs e, BuildEventContext context, DateTime timeStamp)
Logging\ProfilerLogger.cs (1)
93private void ProjectEvaluationFinishedRaised(object sender, BuildEventArgs e)
LogMessagePacketBase.cs (8)
311private BuildEventArgs _buildEvent; 325internal LogMessagePacketBase(KeyValuePair<int, BuildEventArgs>? nodeBuildEvent, TargetFinishedTranslator targetFinishedTranslator) 377internal KeyValuePair<int, BuildEventArgs>? NodeBuildEvent 381return new KeyValuePair<int, BuildEventArgs>(_sinkId, _buildEvent); 618private BuildEventArgs GetBuildEventArgFromId() 677private LoggingEventType GetLoggingEventId(BuildEventArgs eventArg) 859private void WriteEventToStream(BuildEventArgs buildEvent, LoggingEventType eventType, ITranslator translator) 1210private BuildEventArgs ReadEventFromStream(LoggingEventType eventType, ITranslator translator)
Microsoft.Build.Engine.UnitTests (60)
BackEnd\CentralForwardingLogger_Tests.cs (4)
131private static EventSourceSink AttachForwardingLoggerAndRedirector(BuildEventArgs buildEventToCheck) 157private BuildEventArgs _expectedEvent; 166public TestEventRedirector(BuildEventArgs eventToExpect) 178public void ForwardEvent(BuildEventArgs buildEvent)
BackEnd\EventRedirectorToSink_Tests.cs (1)
65delegate (object sender, BuildEventArgs buildEvent)
BackEnd\EventSourceSink_Tests.cs (11)
258private static void RaiseExceptionInEventHandler(BuildEventArgs buildEventToRaise, Exception exceptionToRaise) 295private static void VerifyRegisteredHandlers(BuildEventArgs buildEventToRaise, RaiseEventHelper eventHelper, EventHandlerHelper testHandlers) 378private BuildEventArgs _raisedEvent; 384private BuildEventArgs _raisedAnyEvent; 389private BuildEventArgs _raisedStatusEvent; 479public BuildEventArgs RaisedEvent 490public BuildEventArgs RaisedAnyEvent 501public BuildEventArgs RaisedStatusEvent 533private void HandleEvent(BuildEventArgs e) 686private void Source_AnyEventRaised(object sender, BuildEventArgs e) 1001internal void RaiseBuildEvent(BuildEventArgs buildEvent)
BackEnd\LoggingService_Tests.cs (3)
703LogMessagePacket packet = new LogMessagePacket(new KeyValuePair<int, BuildEventArgs>(1, messageEvent)); 946BuildEventArgs buildEvent, 1444internal void LoggerEventHandler(object sender, BuildEventArgs eventArgs)
BackEnd\LoggingServicesLogMethod_Tests.cs (6)
1777private void LogandVerifyBuildEvent(BuildEventArgs expectedBuildEvent, ProcessBuildEventHelper loggingService) 1798private BuildEventArgs _processedBuildEvent; 1821public BuildEventArgs ProcessedBuildEvent 1858if (buildEvent is BuildEventArgs buildEventArgs) 1862else if (buildEvent is KeyValuePair<int, BuildEventArgs> kvp) 1883private sealed class EventArgsEqualityComparer<T> : IEqualityComparer<T> where T : BuildEventArgs
BackEnd\MockLoggingService.cs (1)
353public void LogBuildEvent(BuildEventArgs buildEvent)
BackEnd\NodePackets_Tests.cs (8)
258BuildEventArgs[] testArgs = new BuildEventArgs[] 322foreach (BuildEventArgs arg in testArgs) 324LogMessagePacket packet = new LogMessagePacket(new KeyValuePair<int, BuildEventArgs>(0, arg)); 334BuildEventArgs args = packet.NodeBuildEvent?.Value; 335BuildEventArgs desArgs = deserializedPacket?.NodeBuildEvent?.Value; 356private static void VerifyLoggingPacket(BuildEventArgs buildEvent, LoggingEventType logEventType) 358LogMessagePacket packet = new LogMessagePacket(new KeyValuePair<int, BuildEventArgs>(0, buildEvent));
BackEnd\TaskHost_Tests.cs (1)
1279internal void EventSource_AnyEventRaised(object sender, BuildEventArgs e)
BinaryLogger_Tests.cs (1)
293var ev2 = reader2.Read();
BuildEventArgsSerialization_Tests.cs (5)
596var deserialized = buildEventArgsReader.Read(); 1071var deserializedEvent = buildEventArgsReader.Read(); 1122var deserializedEvent = buildEventArgsReader.Read(); 1178var deserializedEvent = buildEventArgsReader.Read(); 1219where T : BuildEventArgs
ConfigureableForwardingLogger_Tests.cs (12)
39ForwardedEvents = new List<BuildEventArgs>(); 42internal List<BuildEventArgs> ForwardedEvents; 44protected override void ForwardToCentralLogger(BuildEventArgs e) 90logger.ForwardedEvents.ShouldBe(new BuildEventArgs[] { _buildStarted }); 93logger.ForwardedEvents.ShouldBe(new BuildEventArgs[] 102logger.ForwardedEvents.ShouldBe(new BuildEventArgs[] 112logger.ForwardedEvents.ShouldBe(new BuildEventArgs[] 128logger.ForwardedEvents.ShouldBe(new BuildEventArgs[] 148logger.ForwardedEvents.ShouldBe(new BuildEventArgs[] 187logger.ForwardedEvents.ShouldBe(new BuildEventArgs[] 217logger.ForwardedEvents.ShouldBe(new BuildEventArgs[] 249logger.ForwardedEvents.ShouldBe(new BuildEventArgs[]
ConsoleLogger_Tests.cs (5)
661BuildEventArgs buildEventArgs; 1440BuildEventArgs buildEvent = new BuildErrorEventArgs("", "", "", 0, 0, 0, 0, "", "", ""); 1696BuildEventArgs buildEvent = new BuildErrorEventArgs("", "", "", 0, 0, 0, 0, "", "", ""); 1774BuildEventArgs buildEvent = new BuildErrorEventArgs("", "", "", 0, 0, 0, 0, "", "", ""); 1808BuildEventArgs buildEvent = new BuildErrorEventArgs("", "", "", 0, 0, 0, 0, "", "", "");
Evaluation\EvaluationLogging_Tests.cs (2)
116foreach (var buildEvent in firstEvaluationLogger.AllBuildEvents) 145AdditionalHandlers = new List<Action<object, BuildEventArgs>>
Microsoft.Build.Framework (2)
IEventRedirector.cs (1)
16void ForwardEvent(BuildEventArgs buildEvent);
IEventSource.cs (1)
83public delegate void AnyEventHandler(object sender, BuildEventArgs e);
Microsoft.Build.Framework.UnitTests (3)
CustomEventArgSerialization_Tests.cs (3)
113private static void VerifyGenericEventArg(BuildEventArgs genericEvent, BuildEventArgs newGenericEvent) 1036where T : BuildEventArgs, new()
Microsoft.Build.UnitTests.Shared (21)
BuildEventArgsExtension.cs (14)
26public static bool IsEquivalent(this BuildEventArgs args, BuildEventArgs other) 98return ((BuildEventArgs)args).IsEquivalent(other); 113return ((BuildEventArgs)args).IsEquivalent(other); 159return ((BuildEventArgs)args).IsEquivalent(other); 205return ((BuildEventArgs)args).IsEquivalent(other); 226return ((BuildEventArgs)args).IsEquivalent(other); 247return ((BuildEventArgs)args).IsEquivalent(other); 268return ((BuildEventArgs)args).IsEquivalent(other); 289return ((BuildEventArgs)args).IsEquivalent(other); 319return ((BuildEventArgs)args).IsEquivalent(other); 384return ((BuildEventArgs)args).IsEquivalent(other); 410return ((BuildEventArgs)args).IsEquivalent(other); 441return ((BuildEventArgs)args).IsEquivalent(other);
MockLogger.cs (7)
151public List<BuildEventArgs> AllBuildEvents { get; } = new List<BuildEventArgs>(); 258public List<Action<object, BuildEventArgs>> AdditionalHandlers { get; set; } = new List<Action<object, BuildEventArgs>>(); 266public void LoggerEventHandler(object sender, BuildEventArgs eventArgs) 272foreach (Action<object, BuildEventArgs> handler in AdditionalHandlers) 416public void TelemetryEventHandler(object sender, BuildEventArgs eventArgs)
Microsoft.Build.Utilities.Core (1)
MuxLogger.cs (1)
1205private void RaiseAnyEvent(object sender, BuildEventArgs buildEvent)
MSBuild (11)
LogMessagePacket.cs (1)
28internal LogMessagePacket(KeyValuePair<int, BuildEventArgs>? nodeBuildEvent)
LogMessagePacketBase.cs (8)
311private BuildEventArgs _buildEvent; 325internal LogMessagePacketBase(KeyValuePair<int, BuildEventArgs>? nodeBuildEvent, TargetFinishedTranslator targetFinishedTranslator) 377internal KeyValuePair<int, BuildEventArgs>? NodeBuildEvent 381return new KeyValuePair<int, BuildEventArgs>(_sinkId, _buildEvent); 618private BuildEventArgs GetBuildEventArgFromId() 677private LoggingEventType GetLoggingEventId(BuildEventArgs eventArg) 859private void WriteEventToStream(BuildEventArgs buildEvent, LoggingEventType eventType, ITranslator translator) 1210private BuildEventArgs ReadEventFromStream(LoggingEventType eventType, ITranslator translator)
OutOfProcTaskHostNode.cs (2)
1181private void SendBuildEvent(BuildEventArgs e) 1197LogMessagePacket logMessage = new LogMessagePacket(new KeyValuePair<int, BuildEventArgs>(_currentConfiguration.NodeId, e));
MSBuildTaskHost (11)
LogMessagePacket.cs (1)
28internal LogMessagePacket(KeyValuePair<int, BuildEventArgs>? nodeBuildEvent)
LogMessagePacketBase.cs (8)
311private BuildEventArgs _buildEvent; 325internal LogMessagePacketBase(KeyValuePair<int, BuildEventArgs>? nodeBuildEvent, TargetFinishedTranslator targetFinishedTranslator) 377internal KeyValuePair<int, BuildEventArgs>? NodeBuildEvent 381return new KeyValuePair<int, BuildEventArgs>(_sinkId, _buildEvent); 618private BuildEventArgs GetBuildEventArgFromId() 677private LoggingEventType GetLoggingEventId(BuildEventArgs eventArg) 859private void WriteEventToStream(BuildEventArgs buildEvent, LoggingEventType eventType, ITranslator translator) 1210private BuildEventArgs ReadEventFromStream(LoggingEventType eventType, ITranslator translator)
OutOfProcTaskHostNode.cs (2)
1181private void SendBuildEvent(BuildEventArgs e) 1197LogMessagePacket logMessage = new LogMessagePacket(new KeyValuePair<int, BuildEventArgs>(_currentConfiguration.NodeId, e));