7 references to Boolean
Microsoft.Build.Tasks.Core (7)
XamlTaskFactory\CommandLineGenerator.cs (2)
84
switchToAdd.Type = CommandLineToolSwitchType.
Boolean
;
244
case CommandLineToolSwitchType.
Boolean
:
XamlTaskFactory\CommandLineToolSwitch.cs (2)
243
ErrorUtilities.VerifyThrow(Type == CommandLineToolSwitchType.
Boolean
, "InvalidType", TypeBoolean);
249
ErrorUtilities.VerifyThrow(Type == CommandLineToolSwitchType.
Boolean
, "InvalidType", TypeBoolean);
XamlTaskFactory\XamlDataDrivenToolTask.cs (3)
122
if (switchToAdd.Type != CommandLineToolSwitchType.
Boolean
|| switchToAdd.BooleanValue)
233
if (String.Equals(overridePair.Key, (overriddenSwitch.Value.Type == CommandLineToolSwitchType.
Boolean
&& !overriddenSwitch.Value.BooleanValue) ? overriddenSwitch.Value.ReverseSwitchValue.TrimStart('/') : overriddenSwitch.Value.SwitchValue.TrimStart('/'), StringComparison.OrdinalIgnoreCase))
244
else if ((overrideTarget.Value.Type == CommandLineToolSwitchType.
Boolean
) && (!overrideTarget.Value.BooleanValue) && String.Equals(overrideTarget.Value.ReverseSwitchValue.TrimStart('/'), overridePair.Value, StringComparison.OrdinalIgnoreCase))