1 write to BooleanValue
Microsoft.Build.Tasks.Core (1)
XamlTaskFactory\CommandLineGenerator.cs (1)
85switchToAdd.BooleanValue = (bool)value;
5 references to BooleanValue
Microsoft.Build.Tasks.Core (5)
XamlTaskFactory\CommandLineGenerator.cs (2)
556if (commandLineToolSwitch.BooleanValue) 585string suffix = (commandLineToolSwitch.BooleanValue) ? commandLineToolSwitch.TrueSuffix : commandLineToolSwitch.FalseSuffix;
XamlTaskFactory\XamlDataDrivenToolTask.cs (3)
122if (switchToAdd.Type != CommandLineToolSwitchType.Boolean || switchToAdd.BooleanValue) 233if (String.Equals(overridePair.Key, (overriddenSwitch.Value.Type == CommandLineToolSwitchType.Boolean && !overriddenSwitch.Value.BooleanValue) ? overriddenSwitch.Value.ReverseSwitchValue.TrimStart('/') : overriddenSwitch.Value.SwitchValue.TrimStart('/'), StringComparison.OrdinalIgnoreCase)) 244else if ((overrideTarget.Value.Type == CommandLineToolSwitchType.Boolean) && (!overrideTarget.Value.BooleanValue) && String.Equals(overrideTarget.Value.ReverseSwitchValue.TrimStart('/'), overridePair.Value, StringComparison.OrdinalIgnoreCase))