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 df5e7b6 commit 472e0adCopy full SHA for 472e0ad
m365-developer-proxy/Program.cs
@@ -23,7 +23,7 @@
23
string[] globalOptions = { "--version", "--help", "-h", "/h", "-?", "/?" };
24
25
// filter args to retrieve options
26
-var incomingOptions = args.Where(arg => arg.StartsWith("-") || arg.StartsWith("/")).ToArray();
+var incomingOptions = args.Where(arg => arg.StartsWith("-")).ToArray();
27
28
// remove the global options from the incoming options
29
incomingOptions = incomingOptions.Except(globalOptions).ToArray();
0 commit comments