2 writes to ProjectFullPath
Microsoft.Build (2)
BackEnd\BuildManager\BuildManager.cs (1)
1547
submission.BuildRequestData.
ProjectFullPath
= Path.Combine(
BackEnd\BuildManager\BuildRequestData.cs (1)
159
ProjectFullPath
= projectFullPath;
21 references to ProjectFullPath
Microsoft.Build (20)
BackEnd\BuildManager\BuildManager.cs (2)
1533
if (string.IsNullOrEmpty(submission.BuildRequestData.
ProjectFullPath
))
2123
((IBuildComponentHost)this).LoggingService.LogFatalBuildError(buildEventContext, ex, new BuildEventFileInfo(submission.BuildRequestData.
ProjectFullPath
));
BackEnd\BuildManager\BuildRequestData.cs (1)
181
public override IEnumerable<string> EntryProjectsFullPath =>
ProjectFullPath
.AsSingleItemEnumerable();
BackEnd\Components\ProjectCache\ProjectCacheService.cs (12)
583
var buildEventFileInfo = new BuildEventFileInfo(buildRequest.
ProjectFullPath
);
598
_loggingService.LogComment(buildEventContext, MessageImportance.Normal, "ProjectCacheQueryStartedWithDefaultTargets", buildRequest.
ProjectFullPath
);
602
_loggingService.LogComment(buildEventContext, MessageImportance.Normal, "ProjectCacheQueryStartedWithTargetNames", buildRequest.
ProjectFullPath
, targetNames);
625
MSBuildEventSource.Log.ProjectCacheGetCacheResultStart(plugin.Name, buildRequest.
ProjectFullPath
, targetNames ?? MSBuildConstants.DefaultTargetsMarker);
644
ProjectCacheException.ThrowForErrorLoggedInsideTheProjectCache("ProjectCacheQueryFailed", buildRequest.
ProjectFullPath
);
662
MSBuildEventSource.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)
178
ErrorUtilities.VerifyThrowInternalLength(data.
ProjectFullPath
, "data.ProjectFullPath");
181
_projectFullPath = data.
ProjectFullPath
;
1086
if (FileUtilities.IsVCProjFilename(data.
ProjectFullPath
))
1088
ProjectFileErrorUtilities.ThrowInvalidProjectFile(new BuildEventFileInfo(data.
ProjectFullPath
), "ProjectUpgradeNeededToVcxProj", data.
ProjectFullPath
);
Microsoft.DotNet.HotReload.Watch (1)
Build\ProjectBuildManager.cs (1)
43
using var loggers = BuildReporter.GetLoggers(buildRequests[0].
ProjectFullPath
, operationName);