3 writes to ProjectFullPath
Microsoft.Build (3)
BackEnd\BuildManager\BuildManager.cs (1)
1309submission.BuildRequestData.ProjectFullPath = Path.Combine(
BackEnd\BuildManager\BuildRequestData.cs (2)
147ProjectFullPath = projectInstance.FullPath; 222ProjectFullPath = FileUtilities.NormalizePath(projectFullPath);
33 references to ProjectFullPath
Microsoft.Build (20)
BackEnd\BuildManager\BuildManager.cs (3)
895_buildTelemetry.Project ??= requestData.ProjectFullPath; 1295if (string.IsNullOrEmpty(submission.BuildRequestData.ProjectFullPath)) 1882((IBuildComponentHost)this).LoggingService.LogFatalBuildError(buildEventContext, ex, new BuildEventFileInfo(submission.BuildRequestData.ProjectFullPath));
BackEnd\Components\ProjectCache\ProjectCacheService.cs (12)
502var buildEventFileInfo = new BuildEventFileInfo(buildRequest.ProjectFullPath); 513_loggingService.LogComment(buildEventContext, MessageImportance.Normal, "ProjectCacheQueryStartedWithDefaultTargets", buildRequest.ProjectFullPath); 517_loggingService.LogComment(buildEventContext, MessageImportance.Normal, "ProjectCacheQueryStartedWithTargetNames", buildRequest.ProjectFullPath, targetNames); 539MSBuildEventSource.Log.ProjectCacheGetCacheResultStart(plugin.Name, buildRequest.ProjectFullPath, targetNames ?? MSBuildConstants.DefaultTargetsMarker); 544ProjectCacheException.ThrowForErrorLoggedInsideTheProjectCache("ProjectCacheQueryFailed", buildRequest.ProjectFullPath); 562MSBuildEventSource.Log.ProjectCacheGetCacheResultStop(plugin.Name, buildRequest.ProjectFullPath, targetNames ?? "<default>", cacheResultType); 575_loggingService.LogComment(buildEventContext, MessageImportance.Normal, "ProjectCacheHitWithDefaultTargets", buildRequest.ProjectFullPath); 579_loggingService.LogComment(buildEventContext, MessageImportance.Normal, "ProjectCacheHitWithTargetNames", buildRequest.ProjectFullPath, targetNames); 593_loggingService.LogComment(buildEventContext, MessageImportance.Normal, "ProjectCacheMissWithDefaultTargets", buildRequest.ProjectFullPath); 597_loggingService.LogComment(buildEventContext, MessageImportance.Normal, "ProjectCacheMissWithTargetNames", buildRequest.ProjectFullPath, targetNames); 604_loggingService.LogComment(buildEventContext, MessageImportance.Normal, "ProjectCacheNotApplicableWithDefaultTargets", buildRequest.ProjectFullPath); 608_loggingService.LogComment(buildEventContext, MessageImportance.Normal, "ProjectCacheNotApplicableWithTargetNames", buildRequest.ProjectFullPath, targetNames);
BackEnd\Shared\BuildRequestConfiguration.cs (5)
171ErrorUtilities.VerifyThrowInternalLength(data.ProjectFullPath, "data.ProjectFullPath"); 174_projectFullPath = data.ProjectFullPath; 1037if (FileUtilities.IsVCProjFilename(data.ProjectFullPath)) 1039ProjectFileErrorUtilities.ThrowInvalidProjectFile(new BuildEventFileInfo(data.ProjectFullPath), "ProjectUpgradeNeededToVcxProj", data.ProjectFullPath);
Microsoft.Build.Engine.UnitTests (12)
BackEnd\BuildManager_Tests.cs (5)
1861Project project = _projectCollection.LoadProject(data.ProjectFullPath); 1887Project project = _projectCollection.LoadProject(data.ProjectFullPath); 1919Project project = _projectCollection.LoadProject(data.ProjectFullPath); 2158_env.CreateFile(data.ProjectFullPath, data.ProjectInstance.ToProjectRootElement().RawXml); 2162data.HostServices.SetNodeAffinity(data.ProjectFullPath, NodeAffinity.InProc);
BackEnd\ConfigurationMetadata_Tests.cs (1)
65Assert.Equal(data.ProjectFullPath, metadata.ProjectFullPath);
ProjectCache\ProjectCacheTests.cs (6)
298logger.LogMessage($"MockCache: GetCacheResultAsync for {buildRequest.ProjectFullPath}", MessageImportance.High); 309return _testData?.GetExpectedCacheResultForProjectNumber(GetProjectNumber(buildRequest.ProjectFullPath)) 805instanceMockCache.Requests.ShouldContain(r => r.ProjectFullPath.Equals(node.ProjectInstance.FullPath)); 903mockCache.Requests.First().ProjectFullPath.ShouldEndWith("1.proj"); 1376var projectNumber = GetProjectNumber(buildRequest.ProjectFullPath); 1592var projectFile = request.ProjectFullPath;
ProjectCachePlugin (1)
AssemblyMockCache.cs (1)
48logger.LogMessage($"{nameof(AssemblyMockCache)}: GetCacheResultAsync for {buildRequest.ProjectFullPath}", MessageImportance.High);