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 (17)
106private PropertyDictionary<ProjectPropertyInstance> _globalProperties;
122private PropertyDictionary<ProjectPropertyInstance> _properties;
127private PropertyDictionary<ProjectPropertyInstance> _environmentVariableProperties;
132private PropertyDictionary<ProjectPropertyInstance> _sdkResolvedEnvironmentVariableProperties;
672internal ProjectInstance(Evaluation.Project.Data data, string directory, string fullPath, HostServices hostServices, PropertyDictionary<ProjectPropertyInstance> environmentVariableProperties, ProjectInstanceSettings settings)
716private void CreateSdkResolvedEnvironmentVariablePropertiesSnapshot(PropertyDictionary<ProjectPropertyInstance> sdkResolvedEnvironmentVariablePropertiesDictionary)
782if (that._sdkResolvedEnvironmentVariableProperties is PropertyDictionary<ProjectPropertyInstance> thatEnvProps)
1050private static PropertyDictionary<ProjectPropertyInstance> GetImmutablePropertyDictionaryFromImmutableProject(Project linkedProject)
1371PropertyDictionary<ProjectPropertyInstance> IEvaluatorData<ProjectPropertyInstance, ProjectItemInstance, ProjectMetadataInstance, ProjectItemDefinitionInstance>.GlobalPropertiesDictionary
1378PropertyDictionary<ProjectPropertyInstance> IEvaluatorData<ProjectPropertyInstance, ProjectItemInstance, ProjectMetadataInstance, ProjectItemDefinitionInstance>.EnvironmentVariablePropertiesDictionary
1383PropertyDictionary<ProjectPropertyInstance> IEvaluatorData<ProjectPropertyInstance, ProjectItemInstance, ProjectMetadataInstance, ProjectItemDefinitionInstance>.SdkResolvedEnvironmentVariablePropertiesDictionary
1438PropertyDictionary<ProjectPropertyInstance> IEvaluatorData<ProjectPropertyInstance, ProjectItemInstance, ProjectMetadataInstance, ProjectItemDefinitionInstance>.Properties
1560internal PropertyDictionary<ProjectPropertyInstance> GlobalPropertiesDictionary
1627internal PropertyDictionary<ProjectPropertyInstance> PropertiesToBuildWith
2613PropertyDictionary<ProjectPropertyInstance> globalPropertiesInstances,
3357private void CreateEnvironmentVariablePropertiesSnapshot(PropertyDictionary<ProjectPropertyInstance> environmentVariableProperties)
3370private void CreateGlobalPropertiesSnapshot(PropertyDictionary<ProjectPropertyInstance> globalPropertiesDictionary)