You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i can see the usage for params with short name or long name, but how about the params without names? For example, the chrome, startup with "chrome.exe www.bing.com --disable-background-networking" or maybe "chrome.exe --disable-background-networking www.bing.com --disable-component-update"? Thanks for your help!
The text was updated successfully, but these errors were encountered:
fclp.Setup(arg => arg.Url).As("url").UseForOrphanArguments();// any leading values with no option are captured for this option
fclp.Setup(arg => arg.DisableBackgroundNetworking).As("disable-background-networking);
fclp.Parse(args);// fclp.Object.Url will now contain "www.bing.com"
Which supports your chrome.exe www.bing.com --disable-background-networking example.
i can see the usage for params with short name or long name, but how about the params without names? For example, the chrome, startup with "chrome.exe www.bing.com --disable-background-networking" or maybe "chrome.exe --disable-background-networking www.bing.com --disable-component-update"? Thanks for your help!
The text was updated successfully, but these errors were encountered: