@@ -28,25 +28,25 @@ internal BuildCheckBuildEventHandler(
2828
2929 _eventHandlersFull = new ( )
3030 {
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 ) } ,
4444 } ;
4545
4646 // During restore we'll wait only for restore to be done.
4747 _eventHandlersRestore = new ( )
4848 {
49- { typeof ( BuildSubmissionStartedEventArgs ) , ( BuildEventArgs e ) => HandleBuildSubmissionStartedEvent ( ( BuildSubmissionStartedEventArgs ) e ) } ,
49+ { typeof ( BuildSubmissionStartedEventArgs ) , ( e ) => HandleBuildSubmissionStartedEvent ( ( BuildSubmissionStartedEventArgs ) e ) } ,
5050 } ;
5151
5252 _eventHandlers = _eventHandlersFull ;
0 commit comments