13 instantiations of ProjectEvaluationFinishedEventArgs
Microsoft.Build (4)
BackEnd\Components\Communications\LogMessagePacket.cs (1)
307
var args = new
ProjectEvaluationFinishedEventArgs
(
BackEnd\Components\Logging\LoggingServiceLogMethods.cs (1)
461
new
ProjectEvaluationFinishedEventArgs
(ResourceUtilities.GetResourceString("EvaluationFinished"), projectFile)
Logging\BinaryLogger\BuildEventArgsReader.cs (1)
681
var e = new
ProjectEvaluationFinishedEventArgs
(
LogMessagePacketBase.cs (1)
553
LoggingEventType.ProjectEvaluationFinishedEvent => new
ProjectEvaluationFinishedEventArgs
(),
Microsoft.Build.Engine.UnitTests (8)
BackEnd\NodePackets_Tests.cs (2)
66
ProjectEvaluationFinishedEventArgs evaluationFinished = new
ProjectEvaluationFinishedEventArgs
();
146
var result = new
ProjectEvaluationFinishedEventArgs
(
BuildEventArgsDataEnumeration.cs (3)
22
var args = new
ProjectEvaluationFinishedEventArgs
(
49
ProjectEvaluationFinishedEventArgs args = new
ProjectEvaluationFinishedEventArgs
(
87
ProjectEvaluationFinishedEventArgs args = new
ProjectEvaluationFinishedEventArgs
(
BuildEventArgsSerialization_Tests.cs (2)
763
var args = new
ProjectEvaluationFinishedEventArgs
(
786
var args = new
ProjectEvaluationFinishedEventArgs
(
TerminalLogger_Tests.cs (1)
341
return new
ProjectEvaluationFinishedEventArgs
MSBuild (1)
LogMessagePacketBase.cs (1)
553
LoggingEventType.ProjectEvaluationFinishedEvent => new
ProjectEvaluationFinishedEventArgs
(),
63 references to ProjectEvaluationFinishedEventArgs
dotnet.Tests (1)
CommandTests\Run\RunFileTests.cs (1)
1144
records.Count(static r => r.Args is
ProjectEvaluationFinishedEventArgs
).Should().BeGreaterThanOrEqualTo(2);
Microsoft.Build (36)
BackEnd\Components\Communications\LogMessagePacket.cs (4)
78
WriteProjectEvaluationFinishedEventToStream((
ProjectEvaluationFinishedEventArgs
)buildEvent, translator);
102
private static void WriteProjectEvaluationFinishedEventToStream(
ProjectEvaluationFinishedEventArgs
args, ITranslator translator)
303
private static
ProjectEvaluationFinishedEventArgs
ReadProjectEvaluationFinishedEventFromStream(ITranslator translator)
307
var
args = new ProjectEvaluationFinishedEventArgs(
BackEnd\Components\Logging\EventSourceSink.cs (1)
173
/// Determines whether properties and items should be logged on <see cref="
ProjectEvaluationFinishedEventArgs
"/>
BackEnd\Components\Logging\ILoggingService.cs (2)
217
/// Should properties and items be logged on <see cref="
ProjectEvaluationFinishedEventArgs
"/>
231
/// Indicates whether properties and items should be logged on <see cref="
ProjectEvaluationFinishedEventArgs
"/>.
BackEnd\Components\Logging\LoggingServiceLogMethods.cs (1)
460
ProjectEvaluationFinishedEventArgs
buildEvent =
BuildCheck\Infrastructure\BuildCheckBuildEventHandler.cs (3)
32
{ typeof(
ProjectEvaluationFinishedEventArgs
), (e) => HandleProjectEvaluationFinishedEvent((
ProjectEvaluationFinishedEventArgs
)e) },
71
private void HandleProjectEvaluationFinishedEvent(
ProjectEvaluationFinishedEventArgs
eventArgs)
BuildCheck\Infrastructure\BuildCheckForwardingLogger.cs (1)
36
typeof(
ProjectEvaluationFinishedEventArgs
),
BuildCheck\Infrastructure\BuildCheckManagerProvider.cs (1)
427
ProjectEvaluationFinishedEventArgs
evaluationFinishedEventArgs)
BuildCheck\Infrastructure\BuildEventsProcessor.cs (2)
48
ProjectEvaluationFinishedEventArgs
evaluationFinishedEventArgs)
66
ProjectEvaluationFinishedEventArgs
evaluationFinishedEventArgs,
BuildCheck\Infrastructure\IBuildCheckManager.cs (1)
38
ProjectEvaluationFinishedEventArgs
projectEvaluationFinishedEventArgs);
BuildCheck\Infrastructure\NullBuildCheckManager.cs (1)
18
ProjectEvaluationFinishedEventArgs
projectEvaluationFinishedEventArgs)
BuildCheck\OM\ParsedItemsCheckData.cs (2)
65
ProjectEvaluationFinishedEventArgs
evaluationFinishedEventArgs)
71
private readonly
ProjectEvaluationFinishedEventArgs
_evaluationFinishedEventArgs;
Logging\BinaryLogger\BuildEventArgsReader.cs (1)
681
var
e = new ProjectEvaluationFinishedEventArgs(
Logging\BinaryLogger\BuildEventArgsWriter.cs (2)
221
case
ProjectEvaluationFinishedEventArgs
projectEvaluationFinished: return Write(projectEvaluationFinished);
347
private BinaryLogRecordKind Write(
ProjectEvaluationFinishedEventArgs
e)
Logging\BuildEventArgsExtensions.cs (5)
12
/// <see cref="
ProjectEvaluationFinishedEventArgs
"/> and <see cref="ProjectStartedEventArgs"/>
20
this
ProjectEvaluationFinishedEventArgs
eventArgs)
36
this
ProjectEvaluationFinishedEventArgs
eventArgs)
45
this
ProjectEvaluationFinishedEventArgs
eventArgs, string typeName)
54
this
ProjectEvaluationFinishedEventArgs
eventArgs, string[] typeNames)
Logging\DistributedLoggers\ConfigurableForwardingLogger.cs (1)
341
if (e is ProjectEvaluationStartedEventArgs || e is
ProjectEvaluationFinishedEventArgs
)
Logging\ParallelLogger\ParallelConsoleLogger.cs (1)
1188
else if (e is
ProjectEvaluationFinishedEventArgs
projectEvaluationFinished)
Logging\ProfilerLogger.cs (2)
97
var
projectFinishedEvent = e as
ProjectEvaluationFinishedEventArgs
;
Logging\TerminalLogger\ForwardingTerminalLogger.cs (1)
61
e is
ProjectEvaluationFinishedEventArgs
)
Logging\TerminalLogger\TerminalLogger.cs (2)
630
case
ProjectEvaluationFinishedEventArgs
evalFinish:
788
private void CaptureEvalContext(
ProjectEvaluationFinishedEventArgs
evalFinish)
LogMessagePacketBase.cs (2)
109
/// Event is a <see cref="
ProjectEvaluationFinishedEventArgs
"/>.
626
else if (eventType == typeof(
ProjectEvaluationFinishedEventArgs
))
Microsoft.Build.Engine.UnitTests (20)
BackEnd\BuildManager_Tests.cs (7)
139
ProjectEvaluationFinishedEventArgs
evalFinishedEvent = _logger.EvaluationFinishedEvents[0];
211
_logger.AllBuildEvents.OfType<
ProjectEvaluationFinishedEventArgs
>()
218
_logger.AllBuildEvents.OfType<
ProjectEvaluationFinishedEventArgs
>()
256
ProjectEvaluationFinishedEventArgs
evalFinishedEvent = _logger.EvaluationFinishedEvents[0];
573
ProjectEvaluationFinishedEventArgs
evalFinishedEvent = _logger.EvaluationFinishedEvents[0];
613
ProjectEvaluationFinishedEventArgs
evalFinishedEvent = _logger.EvaluationFinishedEvents[0];
657
ProjectEvaluationFinishedEventArgs
evalFinishedEvent = _logger.EvaluationFinishedEvents[0];
BackEnd\NodePackets_Tests.cs (3)
66
ProjectEvaluationFinishedEventArgs
evaluationFinished = new ProjectEvaluationFinishedEventArgs();
143
private static
ProjectEvaluationFinishedEventArgs
CreateProjectEvaluationFinished()
146
var
result = new ProjectEvaluationFinishedEventArgs(
BuildEventArgsDataEnumeration.cs (3)
22
var
args = new ProjectEvaluationFinishedEventArgs(
49
ProjectEvaluationFinishedEventArgs
args = new ProjectEvaluationFinishedEventArgs(
87
ProjectEvaluationFinishedEventArgs
args = new ProjectEvaluationFinishedEventArgs(
BuildEventArgsSerialization_Tests.cs (2)
763
var
args = new ProjectEvaluationFinishedEventArgs(
786
var
args = new ProjectEvaluationFinishedEventArgs(
Evaluation\EvaluationLogging_Tests.cs (4)
129
var allBuildEvents = firstEvaluationLogger.AllBuildEvents.Where(be => be is ProjectEvaluationStartedEventArgs || be is
ProjectEvaluationFinishedEventArgs
).ToList();
133
allBuildEvents[1].GetType().ShouldBe(typeof(
ProjectEvaluationFinishedEventArgs
));
164
foreach (
var
e in logger.AllBuildEvents.OfType<
ProjectEvaluationFinishedEventArgs
>())
TerminalLogger_Tests.cs (1)
339
private
ProjectEvaluationFinishedEventArgs
MakeProjectEvalFinishedArgs(string projectFile, List<(string, string)>? properties = null, List<(string, string)>? items = null, BuildEventContext? buildEventContext = null)
Microsoft.Build.Framework (1)
IEventSource4.cs (1)
16
/// Determines whether properties and items should be logged on <see cref="
ProjectEvaluationFinishedEventArgs
"/>
Microsoft.Build.UnitTests.Shared (3)
MockLogger.cs (3)
94
public List<
ProjectEvaluationFinishedEventArgs
> EvaluationFinishedEvents { get; } = new List<
ProjectEvaluationFinishedEventArgs
>();
340
case
ProjectEvaluationFinishedEventArgs
evaluationFinishedEventArgs:
Microsoft.Build.Utilities.Core (1)
MuxLogger.cs (1)
137
/// Should properties and items be logged on <see cref="
ProjectEvaluationFinishedEventArgs
"/>
MSBuild (1)
LogMessagePacketBase.cs (1)
626
else if (eventType == typeof(
ProjectEvaluationFinishedEventArgs
))