3 instantiations of GlobalPropertyPartsForMSBuildTask
Microsoft.Build (3)
Graph\ProjectInterpretation.cs (3)
344return new GlobalPropertyPartsForMSBuildTask(newProperties, defaultParts.AdditionalProperties, newUndefineProperties); 370return new GlobalPropertyPartsForMSBuildTask(Properties, AdditionalProperties, UndefineProperties.Add(propertyToUndefine)); 396var defaultParts = new GlobalPropertyPartsForMSBuildTask(properties.ToImmutableDictionary(), additionalProperties.ToImmutableDictionary(), undefineProperties.ToImmutableList());
7 references to GlobalPropertyPartsForMSBuildTask
Microsoft.Build (7)
Graph\ProjectInterpretation.cs (7)
312private static GlobalPropertyPartsForMSBuildTask ProjectReferenceGlobalPropertiesModifier( 313GlobalPropertyPartsForMSBuildTask defaultParts, 368public GlobalPropertyPartsForMSBuildTask AddPropertyToUndefine(string propertyToUndefine) 374private delegate GlobalPropertyPartsForMSBuildTask GlobalPropertiesModifier(GlobalPropertyPartsForMSBuildTask defaultParts, ProjectItemInstance projectReference); 396var defaultParts = new GlobalPropertyPartsForMSBuildTask(properties.ToImmutableDictionary(), additionalProperties.ToImmutableDictionary(), undefineProperties.ToImmutableList()); 398var globalPropertyParts = globalPropertyModifiers?.Aggregate(defaultParts, (currentProperties, modifier) => modifier(currentProperties, projectReference)) ?? defaultParts;