10 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 (2)
MSBuildStaticGraphRestore.cs (2)
933OutputPath = outputPath, 1160restoreMetadata.OutputPath = outputPath;
NuGet.Commands (3)
RestoreCommand\Utility\MSBuildRestoreUtility.cs (2)
256result.RestoreMetadata.OutputPath = specItem.GetProperty("OutputPath"); 377OutputPath = outputPath,
RestoreCommand\Utility\PackageSpecFactory.cs (1)
174restoreMetadata.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)
246if (project.RestoreMetadata == null || string.IsNullOrWhiteSpace(project.RestoreMetadata.OutputPath) || string.IsNullOrWhiteSpace(project.RestoreMetadata.ProjectPath)) 252FileUtility.Delete(Path.Combine(project.RestoreMetadata.OutputPath, LockFileFormat.AssetsFileName)); 264FileUtility.Delete(Path.Combine(project.RestoreMetadata.OutputPath, DependencyGraphSpec.GetDGSpecFileName(Path.GetFileName(project.RestoreMetadata.ProjectPath))));
RestoreTask.cs (2)
267restoredProjectOutputPaths.Add(new TaskItem(Path.Combine(project.RestoreMetadata.OutputPath, LockFileFormat.AssetsFileName))); 274restoredProjectOutputPaths.Add(new TaskItem(Path.Combine(project.RestoreMetadata.OutputPath, DependencyGraphSpec.GetDGSpecFileName(Path.GetFileName(project.RestoreMetadata.ProjectPath)))));
NuGet.Build.Tasks.Console (2)
MSBuildStaticGraphRestore.cs (2)
1457LoggingQueue.Enqueue(new ConsoleOutLogEmbedInBinlog(Path.Combine(project.RestoreMetadata.OutputPath, LockFileFormat.AssetsFileName))); 1464LoggingQueue.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)
477var assetsFilePath = Path.Combine(packageSpec.RestoreMetadata.OutputPath, LockFileFormat.AssetsFileName);
NuGet.Commands (6)
RestoreCommand\RequestFactory\DependencyGraphSpecRequestProvider.cs (2)
205RestoreOutputPath = project.PackageSpec.RestoreMetadata.ProjectStyle == ProjectStyle.ProjectJson ? rootPath : project.PackageSpec.RestoreMetadata.OutputPath, 207MSBuildProjectExtensionsPath = projectPackageSpec.RestoreMetadata.OutputPath,
RestoreCommand\Utility\BuildAssetsUtils.cs (2)
434path = Path.Combine(project.RestoreMetadata.OutputPath, $"{projFileName}.nuget.g{extension}"); 450return 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;