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)
32private readonly PropertyDictionary<ProjectPropertyInstance> _environmentProperties;
38PropertyDictionary<ProjectPropertyInstance> environmentProperties,
39PropertyDictionary<ProjectPropertyInstance> globalProperties)
81internal static string ReadAllToolsets(Dictionary<string, Toolset> toolsets, PropertyDictionary<ProjectPropertyInstance> environmentProperties, PropertyDictionary<ProjectPropertyInstance> globalProperties, ToolsetDefinitionLocations locations)
101PropertyDictionary<ProjectPropertyInstance> environmentProperties,
102PropertyDictionary<ProjectPropertyInstance> globalProperties,
105var initialProperties =
164var props = new PropertyDictionary<ProjectPropertyInstance>();
337PropertyDictionary<ProjectPropertyInstance> globalProperties,
338PropertyDictionary<ProjectPropertyInstance> initialProperties,
395PropertyDictionary<ProjectPropertyInstance> globalProperties,
396PropertyDictionary<ProjectPropertyInstance> initialProperties,
409PropertyDictionary<ProjectPropertyInstance> initialPropertiesClone = new PropertyDictionary<ProjectPropertyInstance>(initialProperties);
429PropertyDictionary<ProjectPropertyInstance> globalProperties,
430PropertyDictionary<ProjectPropertyInstance> initialProperties,
439PropertyDictionary<ProjectPropertyInstance> properties = new PropertyDictionary<ProjectPropertyInstance>();
458PropertyDictionary<ProjectPropertyInstance> subToolsetProperties = new PropertyDictionary<ProjectPropertyInstance>();
512private 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)
586private 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)
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
1436private void LogIfValueDiffers(PropertyDictionary<ProjectPropertyInstance> propertyDictionary, string name, string attemptedValue, string messageResourceName)
1464PropertyDictionary<ProjectPropertyInstance> IEvaluatorData<ProjectPropertyInstance, ProjectItemInstance, ProjectMetadataInstance, ProjectItemDefinitionInstance>.Properties
1580internal PropertyDictionary<ProjectPropertyInstance> GlobalPropertiesDictionary
1647internal PropertyDictionary<ProjectPropertyInstance> PropertiesToBuildWith
2625PropertyDictionary<ProjectPropertyInstance> globalPropertiesInstances,
3369private void CreateEnvironmentVariablePropertiesSnapshot(PropertyDictionary<ProjectPropertyInstance> environmentVariableProperties)
3382private void CreateGlobalPropertiesSnapshot(PropertyDictionary<ProjectPropertyInstance> globalPropertiesDictionary)