2 writes to ProjectFullPath
Microsoft.Build (2)
BackEnd\BuildManager\BuildManager.cs (1)
1285
submission.BuildRequestData.
ProjectFullPath
= Path.Combine(
BackEnd\BuildManager\BuildRequestData.cs (1)
165
ProjectFullPath
= projectFullPath;
33 references to ProjectFullPath
Microsoft.Build (20)
BackEnd\BuildManager\BuildManager.cs (2)
1271
if (string.IsNullOrEmpty(submission.BuildRequestData.
ProjectFullPath
))
1861
((IBuildComponentHost)this).LoggingService.LogFatalBuildError(buildEventContext, ex, new BuildEventFileInfo(submission.BuildRequestData.
ProjectFullPath
));
BackEnd\BuildManager\BuildRequestData.cs (1)
187
public override IEnumerable<string> EntryProjectsFullPath =>
ProjectFullPath
.AsSingleItemEnumerable();
BackEnd\Components\ProjectCache\ProjectCacheService.cs (12)
505
var buildEventFileInfo = new BuildEventFileInfo(buildRequest.
ProjectFullPath
);
516
_loggingService.LogComment(buildEventContext, MessageImportance.Normal, "ProjectCacheQueryStartedWithDefaultTargets", buildRequest.
ProjectFullPath
);
520
_loggingService.LogComment(buildEventContext, MessageImportance.Normal, "ProjectCacheQueryStartedWithTargetNames", buildRequest.
ProjectFullPath
, targetNames);
542
MSBuildEventSource.Log.ProjectCacheGetCacheResultStart(plugin.Name, buildRequest.
ProjectFullPath
, targetNames ?? MSBuildConstants.DefaultTargetsMarker);
547
ProjectCacheException.ThrowForErrorLoggedInsideTheProjectCache("ProjectCacheQueryFailed", buildRequest.
ProjectFullPath
);
565
MSBuildEventSource.Log.ProjectCacheGetCacheResultStop(plugin.Name, buildRequest.
ProjectFullPath
, targetNames ?? "<default>", cacheResultType);
578
_loggingService.LogComment(buildEventContext, MessageImportance.Normal, "ProjectCacheHitWithDefaultTargets", buildRequest.
ProjectFullPath
);
582
_loggingService.LogComment(buildEventContext, MessageImportance.Normal, "ProjectCacheHitWithTargetNames", buildRequest.
ProjectFullPath
, targetNames);
596
_loggingService.LogComment(buildEventContext, MessageImportance.Normal, "ProjectCacheMissWithDefaultTargets", buildRequest.
ProjectFullPath
);
600
_loggingService.LogComment(buildEventContext, MessageImportance.Normal, "ProjectCacheMissWithTargetNames", buildRequest.
ProjectFullPath
, targetNames);
607
_loggingService.LogComment(buildEventContext, MessageImportance.Normal, "ProjectCacheNotApplicableWithDefaultTargets", buildRequest.
ProjectFullPath
);
611
_loggingService.LogComment(buildEventContext, MessageImportance.Normal, "ProjectCacheNotApplicableWithTargetNames", buildRequest.
ProjectFullPath
, targetNames);
BackEnd\Shared\BuildRequestConfiguration.cs (5)
171
ErrorUtilities.VerifyThrowInternalLength(data.
ProjectFullPath
, "data.ProjectFullPath");
174
_projectFullPath = data.
ProjectFullPath
;
1055
if (FileUtilities.IsVCProjFilename(data.
ProjectFullPath
))
1057
ProjectFileErrorUtilities.ThrowInvalidProjectFile(new BuildEventFileInfo(data.
ProjectFullPath
), "ProjectUpgradeNeededToVcxProj", data.
ProjectFullPath
);
Microsoft.Build.Engine.UnitTests (12)
BackEnd\BuildManager_Tests.cs (5)
1926
Project project = _projectCollection.LoadProject(data.
ProjectFullPath
);
1952
Project project = _projectCollection.LoadProject(data.
ProjectFullPath
);
1984
Project project = _projectCollection.LoadProject(data.
ProjectFullPath
);
2223
_env.CreateFile(data.
ProjectFullPath
, data.ProjectInstance.ToProjectRootElement().RawXml);
2227
data.HostServices.SetNodeAffinity(data.
ProjectFullPath
, NodeAffinity.InProc);
BackEnd\ConfigurationMetadata_Tests.cs (1)
65
Assert.Equal(data.
ProjectFullPath
, metadata.ProjectFullPath);
ProjectCache\ProjectCacheTests.cs (6)
298
logger.LogMessage($"MockCache: GetCacheResultAsync for {buildRequest.
ProjectFullPath
}", MessageImportance.High);
309
return _testData?.GetExpectedCacheResultForProjectNumber(GetProjectNumber(buildRequest.
ProjectFullPath
))
805
instanceMockCache.Requests.ShouldContain(r => r.
ProjectFullPath
.Equals(node.ProjectInstance.FullPath));
903
mockCache.Requests.First().
ProjectFullPath
.ShouldEndWith("1.proj");
1377
var projectNumber = GetProjectNumber(buildRequest.
ProjectFullPath
);
1593
var projectFile = request.
ProjectFullPath
;
ProjectCachePlugin (1)
AssemblyMockCache.cs (1)
48
logger.LogMessage($"{nameof(AssemblyMockCache)}: GetCacheResultAsync for {buildRequest.
ProjectFullPath
}", MessageImportance.High);