2 writes to RestoreOutputPath
NuGet.Commands (2)
RestoreCommand\RequestFactory\DependencyGraphSpecRequestProvider.cs (1)
203
RestoreOutputPath
= project.PackageSpec.RestoreMetadata.ProjectStyle == ProjectStyle.ProjectJson ? rootPath : project.PackageSpec.RestoreMetadata.OutputPath,
RestoreCommand\RestoreRequest.cs (1)
51
RestoreOutputPath
= Path.GetDirectoryName(Project.FilePath);
4 references to RestoreOutputPath
NuGet.Commands (4)
RestoreCommand\RequestFactory\RestoreArgs.cs (1)
191
request.LockFilePath = Path.Combine(request.
RestoreOutputPath
, LockFileFormat.AssetsFileName);
RestoreCommand\RestoreCommand.cs (1)
1547
projectLockFilePath = Path.Combine(_request.
RestoreOutputPath
, LockFileFormat.AssetsFileName);
RestoreCommand\Utility\NoOpRestoreUtilities.cs (2)
45
var cacheRoot = request.MSBuildProjectExtensionsPath ?? request.
RestoreOutputPath
;
231
var outputRoot = request.MSBuildProjectExtensionsPath ?? request.
RestoreOutputPath
;