11 instantiations of ResponseFileUsedEventArgs
Microsoft.Build (4)
BackEnd\Components\Logging\LoggingServiceLogMethods.cs (1)
830ResponseFileUsedEventArgs responseFileUsedEvent = new ResponseFileUsedEventArgs(filePath);
Logging\BinaryLogger\BuildEventArgsReader.cs (1)
1160var e = new ResponseFileUsedEventArgs(responseFilePath);
LogMessagePacketBase.cs (2)
516LoggingEventType.ResponseFileUsedEvent => new ResponseFileUsedEventArgs(null), 1020ResponseFileUsedEventArgs buildEvent = new ResponseFileUsedEventArgs(responseFilePath);
Microsoft.Build.Engine.UnitTests (3)
BackEnd\NodePackets_Tests.cs (2)
77ResponseFileUsedEventArgs responseFileUsed = new("path"); 263new ResponseFileUsedEventArgs("path"),
BuildEventArgsSerialization_Tests.cs (1)
622var args = new ResponseFileUsedEventArgs("MSBuild.rsp");
Microsoft.Build.Tasks.Core (2)
LogMessagePacketBase.cs (2)
516LoggingEventType.ResponseFileUsedEvent => new ResponseFileUsedEventArgs(null), 1020ResponseFileUsedEventArgs buildEvent = new ResponseFileUsedEventArgs(responseFilePath);
MSBuild (2)
LogMessagePacketBase.cs (2)
516LoggingEventType.ResponseFileUsedEvent => new ResponseFileUsedEventArgs(null), 1020ResponseFileUsedEventArgs buildEvent = new ResponseFileUsedEventArgs(responseFilePath);
24 references to ResponseFileUsedEventArgs
Microsoft.Build (11)
BackEnd\Components\Logging\LoggingServiceLogMethods.cs (1)
830ResponseFileUsedEventArgs responseFileUsedEvent = new ResponseFileUsedEventArgs(filePath);
Logging\BinaryLogger\BinaryLogger.cs (1)
622else if (e is ResponseFileUsedEventArgs responseFileArgs && responseFileArgs.ResponseFilePath != null)
Logging\BinaryLogger\BuildEventArgsReader.cs (1)
1160var e = new ResponseFileUsedEventArgs(responseFilePath);
Logging\BinaryLogger\BuildEventArgsWriter.cs (2)
508case ResponseFileUsedEventArgs responseFileUsed: return Write(responseFileUsed); 607private BinaryLogRecordKind Write(ResponseFileUsedEventArgs e)
LogMessagePacketBase.cs (6)
133/// Event is a <see cref="ResponseFileUsedEventArgs"/>. 725else if (eventType == typeof(ResponseFileUsedEventArgs)) 759WriteResponseFileUsedEventToStream((ResponseFileUsedEventArgs)buildEvent, translator); 859private void WriteResponseFileUsedEventToStream(ResponseFileUsedEventArgs responseFileUsedEventArgs, ITranslator translator) 1016private ResponseFileUsedEventArgs ReadResponseFileUsedEventFromStream(ITranslator translator, string message, string helpKeyword, string senderName) 1020ResponseFileUsedEventArgs buildEvent = new ResponseFileUsedEventArgs(responseFilePath);
Microsoft.Build.Engine.UnitTests (2)
BackEnd\NodePackets_Tests.cs (1)
77ResponseFileUsedEventArgs responseFileUsed = new("path");
BuildEventArgsSerialization_Tests.cs (1)
622var args = new ResponseFileUsedEventArgs("MSBuild.rsp");
Microsoft.Build.Tasks.Core (6)
LogMessagePacketBase.cs (6)
133/// Event is a <see cref="ResponseFileUsedEventArgs"/>. 725else if (eventType == typeof(ResponseFileUsedEventArgs)) 759WriteResponseFileUsedEventToStream((ResponseFileUsedEventArgs)buildEvent, translator); 859private void WriteResponseFileUsedEventToStream(ResponseFileUsedEventArgs responseFileUsedEventArgs, ITranslator translator) 1016private ResponseFileUsedEventArgs ReadResponseFileUsedEventFromStream(ITranslator translator, string message, string helpKeyword, string senderName) 1020ResponseFileUsedEventArgs buildEvent = new ResponseFileUsedEventArgs(responseFilePath);
MSBuild (5)
LogMessagePacketBase.cs (5)
725else if (eventType == typeof(ResponseFileUsedEventArgs)) 759WriteResponseFileUsedEventToStream((ResponseFileUsedEventArgs)buildEvent, translator); 859private void WriteResponseFileUsedEventToStream(ResponseFileUsedEventArgs responseFileUsedEventArgs, ITranslator translator) 1016private ResponseFileUsedEventArgs ReadResponseFileUsedEventFromStream(ITranslator translator, string message, string helpKeyword, string senderName) 1020ResponseFileUsedEventArgs buildEvent = new ResponseFileUsedEventArgs(responseFilePath);