File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
src/Microsoft.OpenApi.Hidi Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 1515 <PackageId >Microsoft.OpenApi.Hidi</PackageId >
1616 <ToolCommandName >hidi</ToolCommandName >
1717 <PackageOutputPath >./../../artifacts</PackageOutputPath >
18- <Version >1.2.0 </Version >
18+ <Version >1.2.1 </Version >
1919 <Description >OpenAPI.NET CLI tool for slicing OpenAPI documents</Description >
2020 <Copyright >© Microsoft Corporation. All rights reserved.</Copyright >
2121 <PackageTags >OpenAPI .NET</PackageTags >
Original file line number Diff line number Diff line change @@ -15,13 +15,12 @@ namespace Microsoft.OpenApi.Hidi
1515{
1616 static class Program
1717 {
18- static async Task Main ( string [ ] args )
18+ static async Task < int > Main ( string [ ] args )
1919 {
2020 var rootCommand = CreateRootCommand ( ) ;
2121
2222 // Parse the incoming args and invoke the handler
23- await rootCommand . InvokeAsync ( args ) ;
24-
23+ return await rootCommand . InvokeAsync ( args ) ;
2524 }
2625
2726 internal static RootCommand CreateRootCommand ( )
You can’t perform that action at this time.
0 commit comments