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 15
15
<PackageId >Microsoft.OpenApi.Hidi</PackageId >
16
16
<ToolCommandName >hidi</ToolCommandName >
17
17
<PackageOutputPath >./../../artifacts</PackageOutputPath >
18
- <Version >1.2.0 </Version >
18
+ <Version >1.2.1 </Version >
19
19
<Description >OpenAPI.NET CLI tool for slicing OpenAPI documents</Description >
20
20
<Copyright >© Microsoft Corporation. All rights reserved.</Copyright >
21
21
<PackageTags >OpenAPI .NET</PackageTags >
Original file line number Diff line number Diff line change @@ -15,13 +15,12 @@ namespace Microsoft.OpenApi.Hidi
15
15
{
16
16
static class Program
17
17
{
18
- static async Task Main ( string [ ] args )
18
+ static async Task < int > Main ( string [ ] args )
19
19
{
20
20
var rootCommand = CreateRootCommand ( ) ;
21
21
22
22
// Parse the incoming args and invoke the handler
23
- await rootCommand . InvokeAsync ( args ) ;
24
-
23
+ return await rootCommand . InvokeAsync ( args ) ;
25
24
}
26
25
27
26
internal static RootCommand CreateRootCommand ( )
You can’t perform that action at this time.
0 commit comments