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