2 writes to SwitchName
Microsoft.Build.Tasks.Core (2)
XamlTaskFactory\Property.cs (1)
205SwitchName = SwitchName,
XamlTaskFactory\TaskParser.cs (1)
500parameter.SwitchName = baseProperty.Switch;
14 references to SwitchName
Microsoft.Build.Tasks.Core (14)
XamlTaskFactory\CommandLineGenerator.cs (2)
73if (!String.IsNullOrEmpty(property.SwitchName)) 75switchToAdd.SwitchValue = property.Prefix + property.SwitchName;
XamlTaskFactory\Property.cs (1)
205SwitchName = SwitchName,
XamlTaskFactory\TaskGenerator.cs (11)
713commentContent = ResourceUtilities.FormatResourceStringStripCodeAndKeyword("PropertySwitchDescription", property.SwitchName); 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); 930CodeAssignStatement setToolSwitchName = new CodeAssignStatement(new CodePropertyReferenceExpression(new CodeVariableReferenceExpression(SwitchToAdd), SwitchValueProperty), property.SwitchName != String.Empty ? new CodeSnippetExpression(SurroundWithQuotes(property.Prefix + property.SwitchName)) : new CodeSnippetExpression(SurroundWithQuotes(""))); 959return ContainsCurrentPlatform(property.SwitchName); 1007if (_relationsParser.SwitchRelationsList.TryGetValue(property.SwitchName, out SwitchRelations rel)) 1056GenerateAssignToolSwitch(propertyName, SwitchValueProperty, property.Prefix, property.SwitchName);