1 write to BooleanValue
Microsoft.Build.Tasks.Core (1)
XamlTaskFactory\CommandLineGenerator.cs (1)
85
switchToAdd.
BooleanValue
= (bool)value;
5 references to BooleanValue
Microsoft.Build.Tasks.Core (5)
XamlTaskFactory\CommandLineGenerator.cs (2)
556
if (commandLineToolSwitch.
BooleanValue
)
585
string suffix = (commandLineToolSwitch.
BooleanValue
) ? commandLineToolSwitch.TrueSuffix : commandLineToolSwitch.FalseSuffix;
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))