2 instantiations of Property
Microsoft.Build.Tasks.Core (2)
XamlTaskFactory\Property.cs (1)
202var cloned = new Property
XamlTaskFactory\TaskParser.cs (1)
428parameter = new Property();
53 references to Property
Microsoft.Build.Tasks.Core (43)
XamlTaskFactory\CommandLineGenerator.cs (1)
56foreach (Property property in parser.Properties)
XamlTaskFactory\Property.cs (4)
163public LinkedList<Property> DependentArgumentProperties { get; } = new LinkedList<Property>(); 200public Property Clone() 202var cloned = new Property
XamlTaskFactory\RelationsParser.cs (4)
151public LinkedList<Property> Properties { get; } = new LinkedList<Property>(); 156public LinkedList<Property> DefaultSet { get; } = new LinkedList<Property>();
XamlTaskFactory\TaskGenerator.cs (16)
338internal void RemovePropertiesWithIgnoredTypes(LinkedList<Property> propertyList) 340var propertyToIgnoreList = new LinkedList<Property>(); 341foreach (Property property in propertyList) 352foreach (Property property in propertyToIgnoreList) 422foreach (Property property in _taskParser.DefaultSet) 478private void GenerateProperties(CodeTypeDeclaration taskClass, LinkedList<Property> propertyList) 480foreach (Property property in propertyList) 543foreach (Property dependentProperty in property.DependentArgumentProperties) 610private void GenerateCommon(Property property, CodeMemberProperty propertyName, string type, Type returnType, string valueName) 691private void GenerateITaskItemArray(Property property, CodeMemberProperty propertyName) 713private void GenerateIntegers(Property property, CodeMemberProperty propertyName) 759private void GenerateBooleans(Property property, CodeMemberProperty propertyName) 778private void GenerateStrings(Property property, CodeMemberProperty propertyName) 896private bool ContainsCurrentPlatform(Property property) 960private void GenerateOverrides(Property property, CodeMemberProperty propertyName) 1002private void GenerateStringArrays(Property property, CodeMemberProperty propertyName)
XamlTaskFactory\TaskParser.cs (18)
64public LinkedList<Property> Properties { get; } = new LinkedList<Property>(); 69public LinkedList<Property> DefaultSet { get; } = new LinkedList<Property>(); 241var argumentDependencyLookup = new Dictionary<string, Property>(StringComparer.OrdinalIgnoreCase); 255foreach (Property property in Properties) 263if (argumentDependencyLookup.TryGetValue(argument.Parameter, out Property argumentProperty)) 278if (argumentDependencyLookup.TryGetValue(argument.Parameter, out Property argumentProperty)) 293private bool ParseParameterGroupOrParameter(XamlTypes.BaseProperty baseProperty, LinkedList<Property> propertyList, Property property, Dictionary<string, Property> argumentDependencyLookup) 307private bool ParseParameter(XamlTypes.BaseProperty baseProperty, LinkedList<Property> propertyList, Property property, Dictionary<string, Property> argumentDependencyLookup) 309Property propertyToAdd = ObtainAttributes(baseProperty, property); 419private static Property ObtainAttributes(XamlTypes.BaseProperty baseProperty, Property parameterGroup) 421Property parameter;
Microsoft.Build.Tasks.UnitTests (10)
XamlTaskFactory_Tests.cs (10)
177LinkedList<Property> properties = tp.Properties; 228LinkedList<Property> properties = tp.Properties; 253LinkedList<Property> properties = tp.Properties; 282LinkedList<Property> properties = tp.Properties; 305LinkedList<Property> properties = tp.Properties; 326LinkedList<Property> properties = tp.Properties; 350LinkedList<Property> properties = tp.Properties; 379LinkedList<Property> properties = tp.Properties; 406LinkedList<Property> properties = tp.Properties; 433LinkedList<Property> properties = tp.Properties;