@@ -28,25 +28,25 @@ internal BuildCheckBuildEventHandler(
28
28
29
29
_eventHandlersFull = new ( )
30
30
{
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 ) } ,
31
+ { typeof ( BuildSubmissionStartedEventArgs ) , ( e ) => HandleBuildSubmissionStartedEvent ( ( BuildSubmissionStartedEventArgs ) e ) } ,
32
+ { typeof ( ProjectEvaluationFinishedEventArgs ) , ( e ) => HandleProjectEvaluationFinishedEvent ( ( ProjectEvaluationFinishedEventArgs ) e ) } ,
33
+ { typeof ( ProjectEvaluationStartedEventArgs ) , ( e ) => HandleProjectEvaluationStartedEvent ( ( ProjectEvaluationStartedEventArgs ) e ) } ,
34
+ { typeof ( EnvironmentVariableReadEventArgs ) , ( e ) => HandleEnvironmentVariableReadEvent ( ( EnvironmentVariableReadEventArgs ) e ) } ,
35
+ { typeof ( ProjectStartedEventArgs ) , ( e ) => HandleProjectStartedRequest ( ( ProjectStartedEventArgs ) e ) } ,
36
+ { typeof ( ProjectFinishedEventArgs ) , ( e ) => HandleProjectFinishedRequest ( ( ProjectFinishedEventArgs ) e ) } ,
37
+ { typeof ( BuildCheckTracingEventArgs ) , ( e ) => HandleBuildCheckTracingEvent ( ( BuildCheckTracingEventArgs ) e ) } ,
38
+ { typeof ( BuildCheckAcquisitionEventArgs ) , ( e ) => HandleBuildCheckAcquisitionEvent ( ( BuildCheckAcquisitionEventArgs ) e ) } ,
39
+ { typeof ( TaskStartedEventArgs ) , ( e ) => HandleTaskStartedEvent ( ( TaskStartedEventArgs ) e ) } ,
40
+ { typeof ( TaskFinishedEventArgs ) , ( e ) => HandleTaskFinishedEvent ( ( TaskFinishedEventArgs ) e ) } ,
41
+ { typeof ( TaskParameterEventArgs ) , ( e ) => HandleTaskParameterEvent ( ( TaskParameterEventArgs ) e ) } ,
42
+ { typeof ( BuildFinishedEventArgs ) , ( e ) => HandleBuildFinishedEvent ( ( BuildFinishedEventArgs ) e ) } ,
43
+ { typeof ( ProjectImportedEventArgs ) , ( e ) => HandleProjectImportedEvent ( ( ProjectImportedEventArgs ) e ) } ,
44
44
} ;
45
45
46
46
// During restore we'll wait only for restore to be done.
47
47
_eventHandlersRestore = new ( )
48
48
{
49
- { typeof ( BuildSubmissionStartedEventArgs ) , ( BuildEventArgs e ) => HandleBuildSubmissionStartedEvent ( ( BuildSubmissionStartedEventArgs ) e ) } ,
49
+ { typeof ( BuildSubmissionStartedEventArgs ) , ( e ) => HandleBuildSubmissionStartedEvent ( ( BuildSubmissionStartedEventArgs ) e ) } ,
50
50
} ;
51
51
52
52
_eventHandlers = _eventHandlersFull ;
0 commit comments