File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ static async Task Main(string[] args)
62
62
verbosity ,
63
63
formats ,
64
64
threshold ,
65
- // thresholdTypes,
65
+ thresholdTypes ,
66
66
thresholdStat ,
67
67
excludeFilters ,
68
68
includeFilters ,
@@ -83,8 +83,6 @@ static async Task Main(string[] args)
83
83
84
84
ParseResult parseResult = CliParser . Parse ( rootCommand , args ) ;
85
85
86
- CliConfiguration config = new ( rootCommand ) ;
87
-
88
86
rootCommand . SetAction ( async ( context ) =>
89
87
{
90
88
string moduleOrAppDirectoryValue = parseResult . GetValue ( moduleOrAppDirectory ) ;
@@ -138,6 +136,9 @@ static async Task Main(string[] args)
138
136
//context.ExitCode = taskStatus;
139
137
140
138
} ) ;
139
+
140
+ CliConfiguration config = new ( rootCommand ) ;
141
+
141
142
await config . InvokeAsync ( args ) . ConfigureAwait ( false ) ;
142
143
}
143
144
private static Task < int > HandleCommand ( string moduleOrAppDirectory ,
You can’t perform that action at this time.
0 commit comments