3 writes to Prefix
Microsoft.Build.Tasks.Core (3)
XamlTaskFactory\Property.cs (1)
219Prefix = Prefix
XamlTaskFactory\TaskParser.cs (2)
329propertyToAdd.Prefix = DefaultPrefix; 533parameter.Prefix = baseProperty.SwitchPrefix;
14 references to Prefix
Microsoft.Build.Tasks.Core (14)
XamlTaskFactory\CommandLineGenerator.cs (3)
80switchToAdd.SwitchValue = property.Prefix + property.SwitchName; 93switchToAdd.ReverseSwitchValue = property.Prefix + property.ReverseSwitchName; 129switchToAdd.ReverseSwitchValue = property.Prefix + property.ReverseSwitchName;
XamlTaskFactory\Property.cs (1)
219Prefix = Prefix
XamlTaskFactory\TaskGenerator.cs (8)
706GenerateAssignToolSwitch(propertyName, SwitchValueProperty, property.Prefix, property.SwitchName); 720string name = property.SwitchName != String.Empty ? property.Prefix + property.SwitchName : property.Name; 752GenerateAssignToolSwitch(propertyName, SwitchValueProperty, property.Prefix, property.SwitchName); 763GenerateAssignToolSwitch(propertyName, SwitchValueProperty, property.Prefix, property.SwitchName); 764GenerateAssignToolSwitch(propertyName, ReverseSwitchValueProperty, property.Prefix, property.ReverseSwitchName); 885CodeAssignStatement setToolSwitchName = new CodeAssignStatement(new CodePropertyReferenceExpression(new CodeVariableReferenceExpression(SwitchToAdd), SwitchValueProperty), property.SwitchName != String.Empty ? new CodeSnippetExpression(SurroundWithQuotes(property.Prefix + property.SwitchName)) : new CodeSnippetExpression(SurroundWithQuotes(""))); 887GenerateAssignToolSwitch(propertyName, ReverseSwitchValueProperty, property.Prefix, property.ReverseSwitchName); 1011GenerateAssignToolSwitch(propertyName, SwitchValueProperty, property.Prefix, property.SwitchName);
XamlTaskFactory\TaskParser.cs (2)
327if (String.IsNullOrEmpty(propertyToAdd.Prefix)) 379value.Prefix = propertyToAdd.Prefix;