File tree Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -100,20 +100,14 @@ public static void Main(string[] args)
100
100
int idx = Array . FindIndex ( args , a => a == "--modules-to-analyze" || a == "-m" ) ;
101
101
if ( idx + 1 == args . Length )
102
102
{
103
- Console . WriteLine ( "No value provided for the --modules-to-analyze parameter." ) ;
103
+ Console . WriteLine ( "No value provided for the --modules-to-analyze parameter. Filtering over all built modules. " ) ;
104
104
}
105
105
else
106
106
{
107
107
modulesToAnalyze = args [ idx + 1 ] . Split ( ';' ) . ToList ( ) ;
108
108
}
109
109
}
110
110
111
- if ( ! modulesToAnalyze . Any ( ) )
112
- {
113
- Console . WriteLine ( "No modules were found to analyze -- skipping Static Analysis check." ) ;
114
- return ;
115
- }
116
-
117
111
bool useNetcore = args . Any ( a => a == "--use-netcore" || a == "-u" ) ;
118
112
if ( ! useNetcore )
119
113
{
You can’t perform that action at this time.
0 commit comments