2 writes to ProjectFullPath
Microsoft.Build (2)
BackEnd\BuildManager\BuildManager.cs (1)
1470submission.BuildRequestData.ProjectFullPath = Path.Combine(
BackEnd\BuildManager\BuildRequestData.cs (1)
159ProjectFullPath = projectFullPath;
33 references to ProjectFullPath
Microsoft.Build (20)
BackEnd\BuildManager\BuildManager.cs (2)
1456if (string.IsNullOrEmpty(submission.BuildRequestData.ProjectFullPath)) 2046((IBuildComponentHost)this).LoggingService.LogFatalBuildError(buildEventContext, ex, new BuildEventFileInfo(submission.BuildRequestData.ProjectFullPath));
BackEnd\BuildManager\BuildRequestData.cs (1)
181public override IEnumerable<string> EntryProjectsFullPath => ProjectFullPath.AsSingleItemEnumerable();
BackEnd\Components\ProjectCache\ProjectCacheService.cs (12)
583var buildEventFileInfo = new BuildEventFileInfo(buildRequest.ProjectFullPath); 598_loggingService.LogComment(buildEventContext, MessageImportance.Normal, "ProjectCacheQueryStartedWithDefaultTargets", buildRequest.ProjectFullPath); 602_loggingService.LogComment(buildEventContext, MessageImportance.Normal, "ProjectCacheQueryStartedWithTargetNames", buildRequest.ProjectFullPath, targetNames); 625MSBuildEventSource.Log.ProjectCacheGetCacheResultStart(plugin.Name, buildRequest.ProjectFullPath, targetNames ?? MSBuildConstants.DefaultTargetsMarker); 644ProjectCacheException.ThrowForErrorLoggedInsideTheProjectCache("ProjectCacheQueryFailed", buildRequest.ProjectFullPath); 662MSBuildEventSource.Log.ProjectCacheGetCacheResultStop(plugin.Name, buildRequest.ProjectFullPath, targetNames ?? "<default>", cacheResultType); 675_loggingService.LogComment(buildEventContext, MessageImportance.Normal, "ProjectCacheHitWithDefaultTargets", buildRequest.ProjectFullPath); 679_loggingService.LogComment(buildEventContext, MessageImportance.Normal, "ProjectCacheHitWithTargetNames", buildRequest.ProjectFullPath, targetNames); 693_loggingService.LogComment(buildEventContext, MessageImportance.Normal, "ProjectCacheMissWithDefaultTargets", buildRequest.ProjectFullPath); 697_loggingService.LogComment(buildEventContext, MessageImportance.Normal, "ProjectCacheMissWithTargetNames", buildRequest.ProjectFullPath, targetNames); 704_loggingService.LogComment(buildEventContext, MessageImportance.Normal, "ProjectCacheNotApplicableWithDefaultTargets", buildRequest.ProjectFullPath); 708_loggingService.LogComment(buildEventContext, MessageImportance.Normal, "ProjectCacheNotApplicableWithTargetNames", buildRequest.ProjectFullPath, targetNames);
BackEnd\Shared\BuildRequestConfiguration.cs (5)
173ErrorUtilities.VerifyThrowInternalLength(data.ProjectFullPath, "data.ProjectFullPath"); 176_projectFullPath = data.ProjectFullPath; 1066if (FileUtilities.IsVCProjFilename(data.ProjectFullPath)) 1068ProjectFileErrorUtilities.ThrowInvalidProjectFile(new BuildEventFileInfo(data.ProjectFullPath), "ProjectUpgradeNeededToVcxProj", data.ProjectFullPath);
Microsoft.Build.Engine.UnitTests (12)
BackEnd\BuildManager_Tests.cs (5)
1927Project project = _projectCollection.LoadProject(data.ProjectFullPath); 1953Project project = _projectCollection.LoadProject(data.ProjectFullPath); 1985Project project = _projectCollection.LoadProject(data.ProjectFullPath); 2224_env.CreateFile(data.ProjectFullPath, data.ProjectInstance.ToProjectRootElement().RawXml); 2228data.HostServices.SetNodeAffinity(data.ProjectFullPath, NodeAffinity.InProc);
BackEnd\ConfigurationMetadata_Tests.cs (1)
63Assert.Equal(data.ProjectFullPath, metadata.ProjectFullPath);
ProjectCache\ProjectCacheTests.cs (6)
316logger.LogMessage($"MockCache: GetCacheResultAsync for {buildRequest.ProjectFullPath}", MessageImportance.High); 327return _testData?.GetExpectedCacheResultForProjectNumber(GetProjectNumber(buildRequest.ProjectFullPath)) 823instanceMockCache.Requests.ShouldContain(r => r.ProjectFullPath.Equals(node.ProjectInstance.FullPath)); 921mockCache.Requests.First().ProjectFullPath.ShouldEndWith("1.proj"); 1395var projectNumber = GetProjectNumber(buildRequest.ProjectFullPath); 1611var projectFile = request.ProjectFullPath;
ProjectCachePlugin (1)
AssemblyMockCache.cs (1)
47logger.LogMessage($"{nameof(AssemblyMockCache)}: GetCacheResultAsync for {buildRequest.ProjectFullPath}", MessageImportance.High);