1 write to BooleanValue
Microsoft.Build.Tasks.Core (1)
XamlTaskFactory\CommandLineGenerator.cs (1)
90switchToAdd.BooleanValue = (bool)value;
8 references to BooleanValue
Microsoft.Build.Tasks.Core (5)
XamlTaskFactory\CommandLineGenerator.cs (2)
560if (commandLineToolSwitch.BooleanValue) 589string 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))
Microsoft.Build.Tasks.UnitTests (3)
XamlTaskFactory_Tests.cs (3)
733bool booleanValue = switchList["BasicReversible"].BooleanValue; 755bool booleanValue = switchList["BasicReversible"].BooleanValue; 776bool booleanValue = switchList["BasicNonreversible"].BooleanValue;