33 references to ProjectStartedEventArgs
Microsoft.Build.Engine.UnitTests (20)
BackEnd\EventSourceSink_Tests.cs (1)
780
private static ProjectStartedEventArgs s_projectStarted = new
ProjectStartedEventArgs
(-1, "message", "help", "ProjectFile", "targetNames", null, null, null);
BackEnd\MockLoggingService.cs (1)
568
return new
ProjectStartedEventArgs
(
BackEnd\NodePackets_Tests.cs (2)
60
ProjectStartedEventArgs projectStarted = new
ProjectStartedEventArgs
(-1, "message", "help", "ProjectFile", "targetNames", null, null, null);
282
new
ProjectStartedEventArgs
(-1, "message", "help", "ProjectFile", "targetNames", null, null, null),
ConfigureableForwardingLogger_Tests.cs (1)
31
private readonly ProjectStartedEventArgs _projectStarted = new
ProjectStartedEventArgs
(-1, "message", "help", "ProjectFile", "targetNames", null, null, null);
ConsoleLogger_Tests.cs (15)
494
ProjectStartedEventArgs pse = new
ProjectStartedEventArgs
(-1, null, null, "p", null, null, null, buildEventContext);
727
ProjectStartedEventArgs pse = new
ProjectStartedEventArgs
(1, "ps", null, "fname", "", null, null, new BuildEventContext(1, 1, 1, 1));
780
ProjectStartedEventArgs pse = new
ProjectStartedEventArgs
(-1, "ps", null, "fname", "", null, null, new BuildEventContext(1, 2, 3, 4));
856
ProjectStartedEventArgs pse = new
ProjectStartedEventArgs
(-1, "ps", null, "fname", "", null, null, new BuildEventContext(1, 2, 3, 4));
933
ProjectStartedEventArgs pse = new
ProjectStartedEventArgs
(1, "ps", null, "fname", "", null, null, new BuildEventContext(1, 1, 1, 1));
989
ProjectStartedEventArgs pse = new
ProjectStartedEventArgs
(-1, "ps", null, "fname", "", null, null, new BuildEventContext(1, 2, 3, 4));
1064
ProjectStartedEventArgs pse = new
ProjectStartedEventArgs
(-1, "ps", null, "fname", "", null, null, new BuildEventContext(1, 2, 3, 4));
1140
ProjectStartedEventArgs pse = new
ProjectStartedEventArgs
(-1, "ps", null, "fname", "", null, null, new BuildEventContext(1, 2, 3, 4));
2135
ProjectStartedEventArgs project1Started = new
ProjectStartedEventArgs
(1, null, null, "p", "t", null, null, new BuildEventContext(BuildEventContext.InvalidNodeId, BuildEventContext.InvalidTargetId, BuildEventContext.InvalidProjectContextId, BuildEventContext.InvalidTaskId));
2162
ProjectStartedEventArgs project2Started = new
ProjectStartedEventArgs
(2, null, null, "p2", "t2", null, null, project1Started.BuildEventContext);
2281
ProjectStartedEventArgs project = new
ProjectStartedEventArgs
(1, "Hello,", "HI", "None", "Build", null, null, messsage1.BuildEventContext);
2313
ProjectStartedEventArgs project = new
ProjectStartedEventArgs
(1, "Hello,", "HI", "None", "Build", null, null, context);
2343
ProjectStartedEventArgs project = new
ProjectStartedEventArgs
(1, "Hello,", "HI", "None", "Build", null, null, context);
2347
ProjectStartedEventArgs project2 = new
ProjectStartedEventArgs
(2, "Hello,", "HI", "None", "Build", null, null, context2);
2411
ProjectStartedEventArgs project = new
ProjectStartedEventArgs
(1, "Hello,", "HI", "None", "Build", null, null, context);
Microsoft.Build.Framework (1)
ProjectStartedEventArgs.cs (1)
115
:
this
(projectId, message, helpKeyword, projectFile, targetNames, properties, items, parentBuildEventContext)
Microsoft.Build.Framework.UnitTests (12)
CustomEventArgSerialization_Tests.cs (8)
589
ProjectStartedEventArgs genericEvent = new
ProjectStartedEventArgs
(8, "Message", "HelpKeyword", "ProjectFile", null, propertyList, null, new BuildEventContext(7, 8, 9, 10));
598
ProjectStartedEventArgs newGenericEvent = new
ProjectStartedEventArgs
(-1, null, null, null, null, null, null, null);
653
ProjectStartedEventArgs genericEvent = new
ProjectStartedEventArgs
(8, "Message", "HelpKeyword", "ProjectFile", null, null, null, new BuildEventContext(7, 8, 9, 10));
662
ProjectStartedEventArgs newGenericEvent = new
ProjectStartedEventArgs
(-1, null, null, null, null, null, null, null);
670
genericEvent = new
ProjectStartedEventArgs
(-1, string.Empty, string.Empty, string.Empty, string.Empty, null, null, null);
679
newGenericEvent = new
ProjectStartedEventArgs
(-1, null, null, null, null, null, null, null);
687
genericEvent = new
ProjectStartedEventArgs
(-1, null, null, null, null, null, null, null);
696
newGenericEvent = new
ProjectStartedEventArgs
(4, "Something", "Something", "Something", null, null, null, null);
EventArgs_Tests.cs (1)
76
ProjectStartedEventArgs startedEvent = new
ProjectStartedEventArgs
(-1, "Message", "HELP", "File", "Targets", null, null, parentBuildEventContext);
ProjectStartedEventArgs_Tests.cs (3)
31
s_baseProjectStartedEvent = new
ProjectStartedEventArgs
(1, "Message", "HelpKeyword", "ProjecFile", "TargetNames", null, null, parentBuildEventContext);
45
projectStartedEvent = new
ProjectStartedEventArgs
(1, "Message", "HelpKeyword", "ProjecFile", "TargetNames", null, null, null);
49
projectStartedEvent = new
ProjectStartedEventArgs
(1, null, null, null, null, null, null, null);