3 writes to Prefix
Microsoft.Build.Tasks.Core (3)
XamlTaskFactory\Property.cs (1)
219Prefix = Prefix
XamlTaskFactory\TaskParser.cs (2)
328propertyToAdd.Prefix = DefaultPrefix; 532parameter.Prefix = baseProperty.SwitchPrefix;
14 references to Prefix
Microsoft.Build.Tasks.Core (14)
XamlTaskFactory\CommandLineGenerator.cs (3)
75switchToAdd.SwitchValue = property.Prefix + property.SwitchName; 88switchToAdd.ReverseSwitchValue = property.Prefix + property.ReverseSwitchName; 124switchToAdd.ReverseSwitchValue = property.Prefix + property.ReverseSwitchName;
XamlTaskFactory\Property.cs (1)
219Prefix = Prefix
XamlTaskFactory\TaskGenerator.cs (8)
751GenerateAssignToolSwitch(propertyName, SwitchValueProperty, property.Prefix, property.SwitchName); 765string name = property.SwitchName != String.Empty ? property.Prefix + property.SwitchName : property.Name; 797GenerateAssignToolSwitch(propertyName, SwitchValueProperty, property.Prefix, property.SwitchName); 808GenerateAssignToolSwitch(propertyName, SwitchValueProperty, property.Prefix, property.SwitchName); 809GenerateAssignToolSwitch(propertyName, ReverseSwitchValueProperty, property.Prefix, property.ReverseSwitchName); 930CodeAssignStatement setToolSwitchName = new CodeAssignStatement(new CodePropertyReferenceExpression(new CodeVariableReferenceExpression(SwitchToAdd), SwitchValueProperty), property.SwitchName != String.Empty ? new CodeSnippetExpression(SurroundWithQuotes(property.Prefix + property.SwitchName)) : new CodeSnippetExpression(SurroundWithQuotes(""))); 932GenerateAssignToolSwitch(propertyName, ReverseSwitchValueProperty, property.Prefix, property.ReverseSwitchName); 1056GenerateAssignToolSwitch(propertyName, SwitchValueProperty, property.Prefix, property.SwitchName);
XamlTaskFactory\TaskParser.cs (2)
326if (String.IsNullOrEmpty(propertyToAdd.Prefix)) 378value.Prefix = propertyToAdd.Prefix;