Definition\Toolset.cs (15)
131private PropertyDictionary<ProjectPropertyInstance> _properties;
146private PropertyDictionary<ProjectPropertyInstance> _environmentProperties;
151private PropertyDictionary<ProjectPropertyInstance> _globalProperties;
267/// <param name="environmentProperties">A <see cref="PropertyDictionary{ProjectPropertyInstance}"/> containing the environment properties.</param>
268/// <param name="globalProperties">A <see cref="PropertyDictionary{ProjectPropertyInstance}"/> containing the global properties.</param>
271internal Toolset(string toolsVersion, string toolsPath, PropertyDictionary<ProjectPropertyInstance> environmentProperties, PropertyDictionary<ProjectPropertyInstance> globalProperties, string msbuildOverrideTasksPath, string defaultOverrideToolsVersion)
295/// <param name="environmentProperties">A <see cref="PropertyDictionary{ProjectPropertyInstance}"/> containing the environment properties.</param>
296/// <param name="globalProperties">A <see cref="PropertyDictionary{ProjectPropertyInstance}"/> containing the global properties.</param>
304PropertyDictionary<ProjectPropertyInstance> buildProperties,
305PropertyDictionary<ProjectPropertyInstance> environmentProperties,
306PropertyDictionary<ProjectPropertyInstance> globalProperties,
349internal Toolset(string toolsVersion, string toolsPath, PropertyDictionary<ProjectPropertyInstance> buildProperties, ProjectCollection projectCollection, DirectoryGetFiles getFiles, LoadXmlFromPath loadXmlFromPath, string msbuildOverrideTasksPath, DirectoryExists directoryExists)
750internal string GenerateSubToolsetVersion(PropertyDictionary<ProjectPropertyInstance> overrideGlobalProperties)
939PropertyDictionary<ProjectPropertyInstance> propertyBag = new PropertyDictionary<ProjectPropertyInstance>(count);
Definition\ToolsetReader.cs (24)
33private PropertyDictionary<ProjectPropertyInstance> _globalProperties;
38private readonly PropertyDictionary<ProjectPropertyInstance> _environmentProperties;
44PropertyDictionary<ProjectPropertyInstance> environmentProperties,
45PropertyDictionary<ProjectPropertyInstance> globalProperties)
88internal static string ReadAllToolsets(Dictionary<string, Toolset> toolsets, PropertyDictionary<ProjectPropertyInstance> environmentProperties, PropertyDictionary<ProjectPropertyInstance> globalProperties, ToolsetDefinitionLocations locations)
108PropertyDictionary<ProjectPropertyInstance> environmentProperties,
109PropertyDictionary<ProjectPropertyInstance> globalProperties,
112var initialProperties =
171var props = new PropertyDictionary<ProjectPropertyInstance>();
346PropertyDictionary<ProjectPropertyInstance> globalProperties,
347PropertyDictionary<ProjectPropertyInstance> initialProperties,
404PropertyDictionary<ProjectPropertyInstance> globalProperties,
405PropertyDictionary<ProjectPropertyInstance> initialProperties,
418PropertyDictionary<ProjectPropertyInstance> initialPropertiesClone = new PropertyDictionary<ProjectPropertyInstance>(initialProperties);
438PropertyDictionary<ProjectPropertyInstance> globalProperties,
439PropertyDictionary<ProjectPropertyInstance> initialProperties,
448PropertyDictionary<ProjectPropertyInstance> properties = new PropertyDictionary<ProjectPropertyInstance>();
467PropertyDictionary<ProjectPropertyInstance> subToolsetProperties = new PropertyDictionary<ProjectPropertyInstance>();
521private 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)
595private void SetProperty(ToolsetPropertyDefinition property, PropertyDictionary<ProjectPropertyInstance> propertyGroup, PropertyDictionary<ProjectPropertyInstance> globalProperties)
Instance\ProjectInstance.cs (13)
105private PropertyDictionary<ProjectPropertyInstance> _globalProperties;
121private PropertyDictionary<ProjectPropertyInstance> _properties;
126private PropertyDictionary<ProjectPropertyInstance> _environmentVariableProperties;
641internal ProjectInstance(Evaluation.Project.Data data, string directory, string fullPath, HostServices hostServices, PropertyDictionary<ProjectPropertyInstance> environmentVariableProperties, ProjectInstanceSettings settings)
1006private static PropertyDictionary<ProjectPropertyInstance> GetImmutablePropertyDictionaryFromImmutableProject(Project linkedProject)
1333PropertyDictionary<ProjectPropertyInstance> IEvaluatorData<ProjectPropertyInstance, ProjectItemInstance, ProjectMetadataInstance, ProjectItemDefinitionInstance>.GlobalPropertiesDictionary
1340PropertyDictionary<ProjectPropertyInstance> IEvaluatorData<ProjectPropertyInstance, ProjectItemInstance, ProjectMetadataInstance, ProjectItemDefinitionInstance>.EnvironmentVariablePropertiesDictionary
1364PropertyDictionary<ProjectPropertyInstance> IEvaluatorData<ProjectPropertyInstance, ProjectItemInstance, ProjectMetadataInstance, ProjectItemDefinitionInstance>.Properties
1486internal PropertyDictionary<ProjectPropertyInstance> GlobalPropertiesDictionary
1553internal PropertyDictionary<ProjectPropertyInstance> PropertiesToBuildWith
2530PropertyDictionary<ProjectPropertyInstance> globalPropertiesInstances,
3263private void CreateEnvironmentVariablePropertiesSnapshot(PropertyDictionary<ProjectPropertyInstance> environmentVariableProperties)
3276private void CreateGlobalPropertiesSnapshot(PropertyDictionary<ProjectPropertyInstance> globalPropertiesDictionary)