45 references to ProjectFullPath
Microsoft.Build (40)
BackEnd\BuildManager\BuildManager.cs (5)
1457ErrorUtilities.VerifyThrow(FileUtilities.IsSolutionFilename(config.ProjectFullPath), "{0} is not a solution", config.ProjectFullPath); 1466config.ProjectFullPath, 2267var newConfigurationId = _scheduler.GetConfigurationIdFromPlan(unresolvedConfiguration.ProjectFullPath); 2354if (FileUtilities.IsSolutionFilename(config.ProjectFullPath))
BackEnd\Components\BuildRequestEngine\BuildRequestEntry.cs (1)
151(_projectRootDirectory = Path.GetDirectoryName(RequestConfiguration.ProjectFullPath));
BackEnd\Components\Logging\NodeLoggingContext.cs (1)
80return new ProjectLoggingContext(this, request, configuration.ProjectFullPath, configuration.ToolsVersion, evaluationId);
BackEnd\Components\Logging\ProjectLoggingContext.cs (1)
37requestEntry.RequestConfiguration.ProjectFullPath,
BackEnd\Components\ProjectCache\ProjectCacheService.cs (5)
321return new FileAccessContext(configuration.ProjectFullPath, globalProperties, buildRequest.Targets); 646return GenerateGraphEntryPointsFromSolutionConfigurationXml(solutionConfigurationXml!, configuration.ProjectFullPath, globalProperties); 650return new[] { new ProjectGraphEntryPoint(configuration.ProjectFullPath, globalProperties) }; 740FileAccessContext fileAccessContext = new(requestConfiguration.ProjectFullPath, globalProperties, targets); 742var buildEventFileInfo = new BuildEventFileInfo(requestConfiguration.ProjectFullPath);
BackEnd\Components\RequestBuilder\RequestBuilder.cs (5)
368bool skipStaticGraphIsolationConstraints = (isolateProjects != ProjectIsolationMode.False && _requestEntry.RequestConfiguration.ShouldSkipIsolationConstraintsForReference(config.ProjectFullPath)) 1117MSBuildEventSource.Log.BuildProjectStart(_requestEntry.RequestConfiguration.ProjectFullPath); 1127_requestEntry.RequestConfiguration.ProjectFullPath); 1142_requestEntry.RequestConfiguration.ProjectFullPath, 1218MSBuildEventSource.Log.BuildProjectStop(_requestEntry.RequestConfiguration.ProjectFullPath,
BackEnd\Components\RequestBuilder\TargetEntry.cs (1)
429string projectFullPath = requestEntry.RequestConfiguration.ProjectFullPath;
BackEnd\Components\Scheduler\Scheduler.cs (13)
1076System.IO.FileInfo f = new FileInfo(_configCache[unscheduledRequest.BuildRequest.ConfigurationId].ProjectFullPath); 1118System.IO.FileInfo f = new FileInfo(_configCache[unscheduledRequest.BuildRequest.ConfigurationId].ProjectFullPath); 1779config.ProjectFullPath, 1982configs.ParentConfig.ProjectFullPath, 1983configs.RequestConfig.ProjectFullPath); 1992if (parentConfig.ProjectFullPath.Equals(requestConfig.ProjectFullPath, StringComparison.OrdinalIgnoreCase)) 1999parentConfig.ProjectFullPath, 2001requestConfig.ProjectFullPath, 2190string pathOfProject = configuration.ProjectFullPath; 2534_configCache[request.BuildRequest.ConfigurationId].ProjectFullPath, 2706file.WriteLine("Config {0} Node {1} TV: {2} File {3}", config, _schedulingData.GetAssignedNodeForRequestConfiguration(config), _configCache[config].ToolsVersion, _configCache[config].ProjectFullPath); 2795_configCache[buildRequest.ConfigurationId].ProjectFullPath,
BackEnd\Components\Scheduler\SchedulingPlan.cs (3)
61_configPathToData.TryGetValue(_configCache[configId].ProjectFullPath, out PlanConfigData data); 117file.WriteLine(String.Format(CultureInfo.InvariantCulture, "{0} {1} {2}", configuration.Key, configuration.Value, _configCache[configuration.Key].ProjectFullPath)); 211return _configCache[rootRequest.BuildRequest.ConfigurationId].ProjectFullPath + ".buildplan";
BackEnd\Shared\BuildRequestConfiguration.cs (4)
302if (String.Equals(Path.GetFileName(ProjectFullPath), "dirs.proj", StringComparison.OrdinalIgnoreCase)) 307else if (FileUtilities.IsMetaprojectFilename(ProjectFullPath)) 313else if (FileUtilities.IsSolutionFilename(ProjectFullPath)) 480ProjectFullPath,
BackEnd\Shared\ConfigurationMetadata.cs (1)
29_projectFullPath = FileUtilities.NormalizePath(configuration.ProjectFullPath);
Microsoft.Build.Engine.UnitTests (5)
BackEnd\BuildRequestConfiguration_Tests.cs (1)
159Assert.Equal(config1.ProjectFullPath, Path.GetFullPath("file"));
BackEnd\BuildRequestEngine_Tests.cs (2)
163result.AddResultsForTarget(target, new TargetResult(new TaskItem[1] { new TaskItem("include", _entry.RequestConfiguration.ProjectFullPath) }, completeSuccess ? BuildResultUtilities.GetSuccessResult() : BuildResultUtilities.GetStopWithErrorResult())); 472Assert.Equal(Path.GetFullPath("OtherFile"), _newConfiguration_Config.ProjectFullPath);
BackEnd\RequestBuilder_Tests.cs (1)
381projectFiles[i] = _newRequests[i].Config.ProjectFullPath;
BackEnd\TaskHost_Tests.cs (1)
83buildResult.AddResultsForTarget("Build", new TargetResult(new TaskItem[] { new TaskItem("IamSuper", configuration.ProjectFullPath) }, BuildResultUtilities.GetSkippedResult()));