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
vs modify master ++xamarin --uwp // add Xamarin workload and remove UWP
vs modify master ++workload1 ++workload2
vs modify master --workload1 --workload2 .
We'd need to modify the way we parse the workload ID aliases for install, which currently render
as follows with vs install -? (but do allow passing in a + instead of --):
In typical command line parsing, --[flag is treated as a boolean option you turn on with the --.
However, the proposed syntax intends to make the -- mean "remove" and an alternative ++ mean
"turn on/enable/add". Maybe we can use a single dash/plus to tell apart both from the regular non-short
form of a "standard" argument name instead?
The text was updated successfully, but these errors were encountered:
The
vs install
command currently assumes you're installing from scratch.Proposed syntax for modifying:
Options would be mostly the same as for
install
.Examples of the proposed syntax by @adalon are:
We'd need to modify the way we parse the workload ID aliases for
install
, which currently renderas follows with
vs install -?
(but do allow passing in a+
instead of--
):In typical command line parsing,
--[flag
is treated as a boolean option you turn on with the--
.However, the proposed syntax intends to make the
--
mean "remove" and an alternative++
mean"turn on/enable/add". Maybe we can use a single dash/plus to tell apart both from the regular non-short
form of a "standard" argument name instead?
The text was updated successfully, but these errors were encountered: