Definition\Toolset.cs (15)
69private PropertyDictionary<ProjectPropertyInstance> _properties;
84private PropertyDictionary<ProjectPropertyInstance> _environmentProperties;
89private PropertyDictionary<ProjectPropertyInstance> _globalProperties;
211/// <param name="environmentProperties">A <see cref="PropertyDictionary{ProjectPropertyInstance}"/> containing the environment properties.</param>
212/// <param name="globalProperties">A <see cref="PropertyDictionary{ProjectPropertyInstance}"/> containing the global properties.</param>
215internal Toolset(string toolsVersion, string toolsPath, PropertyDictionary<ProjectPropertyInstance> environmentProperties, PropertyDictionary<ProjectPropertyInstance> globalProperties, string msbuildOverrideTasksPath, string defaultOverrideToolsVersion)
240/// <param name="environmentProperties">A <see cref="PropertyDictionary{ProjectPropertyInstance}"/> containing the environment properties.</param>
241/// <param name="globalProperties">A <see cref="PropertyDictionary{ProjectPropertyInstance}"/> containing the global properties.</param>
249PropertyDictionary<ProjectPropertyInstance> buildProperties,
250PropertyDictionary<ProjectPropertyInstance> environmentProperties,
251PropertyDictionary<ProjectPropertyInstance> globalProperties,
294internal Toolset(string toolsVersion, string toolsPath, PropertyDictionary<ProjectPropertyInstance> buildProperties, ProjectCollection projectCollection, DirectoryGetFiles getFiles, LoadXmlFromPath loadXmlFromPath, string msbuildOverrideTasksPath, DirectoryExists directoryExists)
641internal string GenerateSubToolsetVersion(PropertyDictionary<ProjectPropertyInstance> overrideGlobalProperties)
837PropertyDictionary<ProjectPropertyInstance> propertyBag = new PropertyDictionary<ProjectPropertyInstance>(count);
Definition\ToolsetReader.cs (23)
33private readonly PropertyDictionary<ProjectPropertyInstance> _environmentProperties;
39PropertyDictionary<ProjectPropertyInstance> environmentProperties,
40PropertyDictionary<ProjectPropertyInstance> globalProperties)
82internal static string ReadAllToolsets(Dictionary<string, Toolset> toolsets, PropertyDictionary<ProjectPropertyInstance> environmentProperties, PropertyDictionary<ProjectPropertyInstance> globalProperties, ToolsetDefinitionLocations locations)
102PropertyDictionary<ProjectPropertyInstance> environmentProperties,
103PropertyDictionary<ProjectPropertyInstance> globalProperties,
106var initialProperties =
165var props = new PropertyDictionary<ProjectPropertyInstance>();
340PropertyDictionary<ProjectPropertyInstance> globalProperties,
341PropertyDictionary<ProjectPropertyInstance> initialProperties,
398PropertyDictionary<ProjectPropertyInstance> globalProperties,
399PropertyDictionary<ProjectPropertyInstance> initialProperties,
412PropertyDictionary<ProjectPropertyInstance> initialPropertiesClone = new PropertyDictionary<ProjectPropertyInstance>(initialProperties);
432PropertyDictionary<ProjectPropertyInstance> globalProperties,
433PropertyDictionary<ProjectPropertyInstance> initialProperties,
442PropertyDictionary<ProjectPropertyInstance> properties = new PropertyDictionary<ProjectPropertyInstance>();
461PropertyDictionary<ProjectPropertyInstance> subToolsetProperties = new PropertyDictionary<ProjectPropertyInstance>();
515private void EvaluateAndSetProperty(ToolsetPropertyDefinition property, PropertyDictionary<ProjectPropertyInstance> properties, PropertyDictionary<ProjectPropertyInstance> globalProperties, PropertyDictionary<ProjectPropertyInstance> initialProperties, bool accumulateProperties, ref string toolsPath, ref string binPath, ref Expander<ProjectPropertyInstance, ProjectItemInstance> expander)
589private void SetProperty(ToolsetPropertyDefinition property, PropertyDictionary<ProjectPropertyInstance> propertyGroup, PropertyDictionary<ProjectPropertyInstance> globalProperties)
Instance\ProjectInstance.cs (18)
107private PropertyDictionary<ProjectPropertyInstance> _globalProperties;
123private PropertyDictionary<ProjectPropertyInstance> _properties;
128private PropertyDictionary<ProjectPropertyInstance> _environmentVariableProperties;
133private PropertyDictionary<ProjectPropertyInstance> _sdkResolvedEnvironmentVariableProperties;
673internal ProjectInstance(Evaluation.Project.Data data, string directory, string fullPath, HostServices hostServices, PropertyDictionary<ProjectPropertyInstance> environmentVariableProperties, ProjectInstanceSettings settings)
717private void CreateSdkResolvedEnvironmentVariablePropertiesSnapshot(PropertyDictionary<ProjectPropertyInstance> sdkResolvedEnvironmentVariablePropertiesDictionary)
783if (that._sdkResolvedEnvironmentVariableProperties is PropertyDictionary<ProjectPropertyInstance> thatEnvProps)
1051private static PropertyDictionary<ProjectPropertyInstance> GetImmutablePropertyDictionaryFromImmutableProject(Project linkedProject)
1372PropertyDictionary<ProjectPropertyInstance> IEvaluatorData<ProjectPropertyInstance, ProjectItemInstance, ProjectMetadataInstance, ProjectItemDefinitionInstance>.GlobalPropertiesDictionary
1379PropertyDictionary<ProjectPropertyInstance> IEvaluatorData<ProjectPropertyInstance, ProjectItemInstance, ProjectMetadataInstance, ProjectItemDefinitionInstance>.EnvironmentVariablePropertiesDictionary
1384PropertyDictionary<ProjectPropertyInstance> IEvaluatorData<ProjectPropertyInstance, ProjectItemInstance, ProjectMetadataInstance, ProjectItemDefinitionInstance>.SdkResolvedEnvironmentVariablePropertiesDictionary
1421private void LogIfValueDiffers(PropertyDictionary<ProjectPropertyInstance> propertyDictionary, string name, string attemptedValue, string messageResourceName)
1449PropertyDictionary<ProjectPropertyInstance> IEvaluatorData<ProjectPropertyInstance, ProjectItemInstance, ProjectMetadataInstance, ProjectItemDefinitionInstance>.Properties
1571internal PropertyDictionary<ProjectPropertyInstance> GlobalPropertiesDictionary
1638internal PropertyDictionary<ProjectPropertyInstance> PropertiesToBuildWith
2624PropertyDictionary<ProjectPropertyInstance> globalPropertiesInstances,
3368private void CreateEnvironmentVariablePropertiesSnapshot(PropertyDictionary<ProjectPropertyInstance> environmentVariableProperties)
3381private void CreateGlobalPropertiesSnapshot(PropertyDictionary<ProjectPropertyInstance> globalPropertiesDictionary)