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