8 writes to OutputPath
aspire-managed (1)
NuGet\Commands\RestoreCommand.cs (1)
366OutputPath = outputPath,
Microsoft.Build.NuGetSdkResolver (1)
RestoreRunnerEx.cs (1)
90OutputPath = projectDirectory,
NuGet.Build.Tasks.Console (1)
MSBuildStaticGraphRestore.cs (1)
1068restoreMetadata.OutputPath = outputPath;
NuGet.Commands (2)
RestoreCommand\Utility\MSBuildRestoreUtility.cs (1)
219result.RestoreMetadata.OutputPath = specItem.GetProperty("OutputPath");
RestoreCommand\Utility\PackageSpecFactory.cs (1)
328restoreMetadata.OutputPath = outputPath;
NuGet.PackageManagement (1)
Projects\ProjectJsonNuGetProject.cs (1)
187metadata.OutputPath = await GetMSBuildProjectExtensionsPathAsync();
NuGet.ProjectModel (2)
JsonPackageSpecReader.Utf8JsonStreamReader.cs (1)
1096msbuildMetadata.OutputPath = outputPath;
ProjectRestoreMetadata.cs (1)
270clone.OutputPath = OutputPath;
21 references to OutputPath
NuGet.Build.Tasks (5)
BuildTasksUtility.cs (3)
261if (project.RestoreMetadata == null || string.IsNullOrWhiteSpace(project.RestoreMetadata.OutputPath) || string.IsNullOrWhiteSpace(project.RestoreMetadata.ProjectPath)) 267FileUtility.Delete(Path.Combine(project.RestoreMetadata.OutputPath, LockFileFormat.AssetsFileName)); 279FileUtility.Delete(Path.Combine(project.RestoreMetadata.OutputPath, DependencyGraphSpec.GetDGSpecFileName(Path.GetFileName(project.RestoreMetadata.ProjectPath))));
RestoreTask.cs (2)
265restoredProjectOutputPaths.Add(new TaskItem(Path.Combine(project.RestoreMetadata.OutputPath, LockFileFormat.AssetsFileName))); 272restoredProjectOutputPaths.Add(new TaskItem(Path.Combine(project.RestoreMetadata.OutputPath, DependencyGraphSpec.GetDGSpecFileName(Path.GetFileName(project.RestoreMetadata.ProjectPath)))));
NuGet.Build.Tasks.Console (2)
MSBuildStaticGraphRestore.cs (2)
1365LoggingQueue.Enqueue(new ConsoleOutLogEmbedInBinlog(Path.Combine(project.RestoreMetadata.OutputPath, LockFileFormat.AssetsFileName))); 1372LoggingQueue.Enqueue(new ConsoleOutLogEmbedInBinlog(Path.Combine(project.RestoreMetadata.OutputPath, DependencyGraphSpec.GetDGSpecFileName(Path.GetFileName(project.RestoreMetadata.ProjectPath)))));
NuGet.CommandLine.XPlat (1)
Commands\Package\Update\PackageUpdateIO.cs (1)
469var assetsFilePath = Path.Combine(packageSpec.RestoreMetadata.OutputPath, LockFileFormat.AssetsFileName);
NuGet.Commands (6)
RestoreCommand\RequestFactory\DependencyGraphSpecRequestProvider.cs (2)
203RestoreOutputPath = project.PackageSpec.RestoreMetadata.ProjectStyle == ProjectStyle.ProjectJson ? rootPath : project.PackageSpec.RestoreMetadata.OutputPath, 205MSBuildProjectExtensionsPath = projectPackageSpec.RestoreMetadata.OutputPath,
RestoreCommand\Utility\BuildAssetsUtils.cs (2)
414path = Path.Combine(project.RestoreMetadata.OutputPath, $"{projFileName}.nuget.g{extension}"); 430return Path.Combine(project.RestoreMetadata.OutputPath, $"{projFileName}.nuget.g{extension}");
RestoreCommand\Utility\SpecValidationUtility.cs (2)
196if (string.IsNullOrEmpty(spec.RestoreMetadata.OutputPath)) 201nameof(spec.RestoreMetadata.OutputPath),
NuGet.PackageManagement (1)
BuildIntegration\DependencyGraphRestoreUtility.cs (1)
279var outputPath = packageSpec.RestoreMetadata.OutputPath;
NuGet.ProjectModel (6)
PackageSpecWriter.cs (2)
74&& msbuildMetadata.PackagesPath == null && msbuildMetadata.OutputPath == null) 104SetValue(writer, "outputPath", msbuildMetadata.OutputPath);
ProjectRestoreMetadata.cs (4)
167hashCode.AddObject(OutputPath, osStringComparer); 217osStringComparer.Equals(OutputPath, other.OutputPath) && 270clone.OutputPath = OutputPath;