We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00aed81 commit 52ceb1fCopy full SHA for 52ceb1f
DevProxy/Commands/DevProxyConfigOptions.cs
@@ -113,13 +113,18 @@ public DevProxyConfigOptions()
113
}
114
115
};
116
+ var discoverOption = new Option<bool>(DevProxyCommand.DiscoverOptionName, "--discover")
117
+ {
118
+ Arity = ArgumentArity.Zero
119
+ };
120
121
var options = new List<Option>
122
{
123
ipAddressOption,
124
configFileOption,
125
urlsToWatchOption,
- logLevelOption
126
+ logLevelOption,
127
+ discoverOption
128
129
this.AddOptions(options.OrderByName());
130
0 commit comments