Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
adopt to recent System.CommandLine breaking changes after recent bran…
…ch sync
  • Loading branch information
adamsitnik committed Nov 14, 2022
commit d644f3011c660cdbf339cfc888fa43b3939773a6
14 changes: 7 additions & 7 deletions src/GenAPI/Microsoft.DotNet.GenAPI.Tool/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,13 @@ static int Main(string[] args)
rootCommand.SetHandler((InvocationContext context) =>
{
GenAPIApp.Run(new GenAPIApp.Context(
context.ParseResult.GetValueForOption(assembliesOption)!,
context.ParseResult.GetValueForOption(assemblyReferencesOption),
context.ParseResult.GetValueForOption(exceptionMessageOption),
context.ParseResult.GetValueForOption(headerFileOption),
context.ParseResult.GetValueForOption(outputPathOption),
context.ParseResult.GetValueForOption(excludeAttributesFilesOption),
context.ParseResult.GetValueForOption(includeVisibleOutsideOfAssembly)
context.ParseResult.GetValue(assembliesOption)!,
context.ParseResult.GetValue(assemblyReferencesOption),
context.ParseResult.GetValue(exceptionMessageOption),
context.ParseResult.GetValue(headerFileOption),
context.ParseResult.GetValue(outputPathOption),
context.ParseResult.GetValue(excludeAttributesFilesOption),
context.ParseResult.GetValue(includeVisibleOutsideOfAssembly)
));
});

Expand Down