File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
src/Cli/dotnet/Commands/Tool/Run Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,6 @@ private static Command ConstructCommand()
5454 command . Arguments . Add ( CommandArgument ) ;
5555 command . Options . Add ( RollForwardOption ) ;
5656 command . Options . Add ( FromSourceOption ) ;
57- command . Options . Add ( FromSourceToolManifestOption ) ;
5857 command . Options . Add ( FromSourceConfigFile ) ;
5958 command . Options . Add ( FromSourceSourceOption ) ;
6059 command . Options . Add ( FromSourceAddSourceOption ) ;
Original file line number Diff line number Diff line change @@ -25,8 +25,8 @@ internal class ToolRunFromSourceCommand(
2525 private readonly string [ ] _sources = result . GetValue ( ToolRunCommandParser . FromSourceSourceOption ) ?? [ ] ;
2626 private readonly string [ ] _addSource = result . GetValue ( ToolRunCommandParser . FromSourceAddSourceOption ) ?? [ ] ;
2727 private readonly bool _ignoreFailedSources = result . GetValue ( ToolCommandRestorePassThroughOptions . IgnoreFailedSourcesOption ) ;
28- private readonly bool _interactive = result . GetValue ( ToolCommandRestorePassThroughOptions . InteractiveOption ) ;
29- private readonly VerbosityOptions _verbosity = result . GetValue ( ToolRunCommandParser . VerbosityOption ) ?? VerbosityOptions . normal ;
28+ private readonly bool _interactive = result . GetValue ( ToolCommandRestorePassThroughOptions . InteractiveRestoreOption ) ;
29+ private readonly VerbosityOptions _verbosity = result . GetValue ( ToolRunCommandParser . VerbosityOption ) ;
3030
3131 public override int Execute ( )
3232 {
You can’t perform that action at this time.
0 commit comments