17 references to PropertySource
Microsoft.Build (17)
Evaluation\PropertyTrackingEvaluatorDataWrapper.cs (17)
128PropertySource.Xml, 255PropertySource source, 274if (IsEnvironmentVariableReadTrackingRequested && _wrapped.EnvironmentVariablePropertiesDictionary.Contains(name) && source != PropertySource.EnvironmentVariable) 286private void TrackPropertyInitialValueSet(P property, PropertySource source, IElementLocation? location) 360private PropertySource DeterminePropertySource(bool isGlobalProperty, bool mayBeReserved, bool isEnvironmentVariable, bool isCommandLineProperty) 364return PropertySource.EnvironmentVariable; 369return isCommandLineProperty ? PropertySource.CommandLine : PropertySource.Global; 372return mayBeReserved ? PropertySource.BuiltIn : PropertySource.Toolset; 390private static string GetPropertySourceName(PropertySource source) => source switch 392PropertySource.Xml => "Xml", 393PropertySource.BuiltIn => "BuiltIn", 394PropertySource.Global => "Global", 395PropertySource.Toolset => "Toolset", 396PropertySource.EnvironmentVariable => "EnvironmentVariable", 397PropertySource.CommandLine => "CommandLine",