File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
src/Microsoft.OpenApi.Hidi Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -22,8 +22,6 @@ static async Task Main(string[] args)
22
22
// Parse the incoming args and invoke the handler
23
23
await rootCommand . InvokeAsync ( args ) ;
24
24
25
- //// Wait for logger to write messages to the console before exiting
26
- await Task . Delay ( 10 ) ;
27
25
}
28
26
29
27
internal static RootCommand CreateRootCommand ( )
@@ -129,6 +127,8 @@ internal static RootCommand CreateRootCommand()
129
127
var showCommand = new Command ( "show" )
130
128
{
131
129
descriptionOption ,
130
+ csdlOption ,
131
+ csdlFilterOption ,
132
132
logLevelOption ,
133
133
outputOption ,
134
134
cleanOutputOption
@@ -137,6 +137,8 @@ internal static RootCommand CreateRootCommand()
137
137
showCommand . Handler = new ShowCommandHandler
138
138
{
139
139
DescriptionOption = descriptionOption ,
140
+ CsdlOption = csdlOption ,
141
+ CsdlFilterOption = csdlFilterOption ,
140
142
OutputOption = outputOption ,
141
143
LogLevelOption = logLevelOption
142
144
} ;
You can’t perform that action at this time.
0 commit comments