7 references to Boolean
Microsoft.Build.Tasks.Core (7)
XamlTaskFactory\CommandLineGenerator.cs (2)
84switchToAdd.Type = CommandLineToolSwitchType.Boolean; 244case CommandLineToolSwitchType.Boolean:
XamlTaskFactory\CommandLineToolSwitch.cs (2)
243ErrorUtilities.VerifyThrow(Type == CommandLineToolSwitchType.Boolean, "InvalidType", TypeBoolean); 249ErrorUtilities.VerifyThrow(Type == CommandLineToolSwitchType.Boolean, "InvalidType", TypeBoolean);
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))