Evaluation\PropertyTrackingEvaluatorDataWrapper.cs (17)
128PropertySource.Xml,
267PropertySource source,
286if (IsEnvironmentVariableReadTrackingRequested && _wrapped.EnvironmentVariablePropertiesDictionary.Contains(name) && source != PropertySource.EnvironmentVariable)
298private void TrackPropertyInitialValueSet(P property, PropertySource source, IElementLocation? location)
372private PropertySource DeterminePropertySource(bool isGlobalProperty, bool mayBeReserved, bool isEnvironmentVariable, bool isCommandLineProperty)
376return PropertySource.EnvironmentVariable;
381return isCommandLineProperty ? PropertySource.CommandLine : PropertySource.Global;
384return mayBeReserved ? PropertySource.BuiltIn : PropertySource.Toolset;
402private static string GetPropertySourceName(PropertySource source) => source switch
404PropertySource.Xml => "Xml",
405PropertySource.BuiltIn => "BuiltIn",
406PropertySource.Global => "Global",
407PropertySource.Toolset => "Toolset",
408PropertySource.EnvironmentVariable => "EnvironmentVariable",
409PropertySource.CommandLine => "CommandLine",