1 write to _projectRootElement
Microsoft.Build (1)
Evaluation\Evaluator.cs (1)
252_projectRootElement = projectRootElement;
20 references to _projectRootElement
Microsoft.Build (20)
Evaluation\Evaluator.cs (20)
616string projectFile = String.IsNullOrEmpty(_projectRootElement.ProjectFileLocation.File) ? "(null)" : _projectRootElement.ProjectFileLocation.File; 635MSBuildEventSource.Log.EvaluatePass0Start(_projectRootElement.ProjectFileLocation.File); 655PerformDepthFirstPass(_projectRootElement); 794if (_projectRootElement.Count > 0) // VB/C# will new up empty projects; they aren't worth recording 810string output = String.Format(CultureInfo.CurrentUICulture, "###: MSBUILD: Evaluating or reevaluating project {0} with {1} global properties and {2} tools version, child count {3}, CurrentSolutionConfigurationContents hash {4} other properties:\n{5}", _projectRootElement.FullPath, globalPropertiesCount, _data.Toolset.ToolsVersion, _projectRootElement.Count, hash, propertyDump); 1159if (String.IsNullOrEmpty(_projectRootElement.FullPath)) 1161SetBuiltInProperty(ReservedPropertyNames.projectDirectory, String.IsNullOrEmpty(_projectRootElement.DirectoryPath) ? 1166_projectRootElement.DirectoryPath); 1173string projectFileWithoutExtension = EscapingUtilities.Escape(Path.GetFileNameWithoutExtension(_projectRootElement.FullPath)); 1174string projectExtension = EscapingUtilities.Escape(Path.GetExtension(_projectRootElement.FullPath)); 1176string projectDirectory = EscapingUtilities.Escape(_projectRootElement.DirectoryPath); 1321lazyEvaluator.ProcessItemElement(_projectRootElement.DirectoryPath, itemElement, conditionResult); 1916string projectPath = _projectRootElement.FullPath + ".SdkResolver." + propertiesAndItemsHash + ".proj"; 1958_projectRootElement.IsExplicitlyLoaded, 2082if (String.Equals(_projectRootElement.FullPath, importFileUnescaped, StringComparison.OrdinalIgnoreCase) /* We are trying to import ourselves */) 2123if (previouslyImportedAt.ContainingProject != _projectRootElement && importElement.ContainingProject != _projectRootElement) 2125parenthesizedProjectLocation = "[" + _projectRootElement.FullPath + "]";