18 references to ProjectProperties
Microsoft.NET.ProjectData.Tasks (18)
ForwardCompat.cs (1)
65 internal static readonly HashSet<string> KnownPropertyKeys = new HashSet<string>(ProjectProperties.All, StringComparer.OrdinalIgnoreCase);
ProjectDataMerger.cs (6)
349 return slices.FirstOrDefault(slice => !IsNetFrameworkTargetFramework(slice.GetSliceDimension(ProjectProperties.TargetFramework))); 355 slice.GetSliceDimension(ProjectProperties.TargetFramework), 624 => this.GetSliceDimension(ProjectProperties.TargetFramework) ?? GetValue(this.Properties, ProjectProperties.TargetFramework); 627 => GetValue(this.Properties, ProjectProperties.TargetFrameworkIdentifier); 630 => GetValue(this.Properties, ProjectProperties.TargetFrameworkVersion);
ProjectDataWriter.cs (11)
86 ProjectProperties.SolutionPath, 93 private static readonly FrozenSet<string> RequiredProperties = ProjectProperties.Required.ToFrozenSet(StringComparer.OrdinalIgnoreCase); 230 GetItemValue(sliceDimensions, ProjectProperties.TargetFramework) ?? GetItemValue(properties, ProjectProperties.TargetFramework), 231 GetItemValue(properties, ProjectProperties.TargetFrameworkIdentifier), 232 GetItemValue(properties, ProjectProperties.TargetFrameworkVersion)); 705 GetItemValue(sliceDimensions, ProjectProperties.TargetFramework) ?? GetItemValue(properties, ProjectProperties.TargetFramework), 706 GetItemValue(properties, ProjectProperties.TargetFrameworkIdentifier), 707 GetItemValue(properties, ProjectProperties.TargetFrameworkVersion)); 1367 string knownTargetFramework = item.GetMetadata(ProjectProperties.TargetFramework);