7 writes to ConfigFilePaths
Microsoft.Build.NuGetSdkResolver (1)
RestoreRunnerEx.cs (1)
92ConfigFilePaths = settings.GetConfigFilePaths(),
NuGet.Build.Tasks.Console (1)
MSBuildStaticGraphRestore.cs (1)
1067restoreMetadata.ConfigFilePaths = settings.GetConfigFilePaths();
NuGet.Commands (2)
RestoreCommand\Utility\PackageSpecFactory.cs (2)
145metadata.ConfigFilePaths = settings.GetConfigFilePaths(); 327restoreMetadata.ConfigFilePaths = [];
NuGet.PackageManagement (1)
Projects\ProjectJsonNuGetProject.cs (1)
253packageSpec.RestoreMetadata.ConfigFilePaths = settings.GetConfigFilePaths();
NuGet.ProjectModel (2)
JsonPackageSpecReader.Utf8JsonStreamReader.cs (1)
1074msbuildMetadata.ConfigFilePaths = configFilePaths;
ProjectRestoreMetadata.cs (1)
280clone.ConfigFilePaths = ConfigFilePaths != null ? new List<string>(ConfigFilePaths) : null;
12 references to ConfigFilePaths
NuGet.CommandLine.XPlat (1)
Commands\PackageReferenceCommands\AddPackageReferenceCommandRunner.cs (1)
315IList<PackageSource> sources = AddPackageCommandUtility.EvaluateSources(originalPackageSpec.RestoreMetadata.Sources, originalPackageSpec.RestoreMetadata.ConfigFilePaths);
NuGet.Commands (4)
RestoreCommand\RequestFactory\DependencyGraphSpecRequestProvider.cs (1)
170var settings = _settings ?? Settings.LoadImmutableSettingsGivenConfigPaths(projectPackageSpec.RestoreMetadata.ConfigFilePaths, settingsLoadingContext);
RestoreCommand\Utility\MSBuildRestoreUtility.cs (1)
210result.RestoreMetadata.ConfigFilePaths.Add(configFilePath);
RestoreCommand\Utility\PackageSpecFactory.cs (2)
63/// <see cref="ProjectRestoreMetadata.FallbackFolders"/>, and <see cref="ProjectRestoreMetadata.ConfigFilePaths"/> 105/// and <see cref="ProjectRestoreMetadata.ConfigFilePaths"/>.
NuGet.ProjectModel (7)
PackageSpecWriter.cs (2)
116var configFilePathsCopy = msbuildMetadata.ConfigFilePaths.ToList(); 126SetArrayValue(writer, "configFilePaths", msbuildMetadata.ConfigFilePaths);
ProjectRestoreMetadata.cs (5)
172hashCode.AddUnorderedSequence(ConfigFilePaths, osStringComparer); 222ConfigFilePaths.OrderedEquals(other.ConfigFilePaths, filePath => filePath, osStringComparer, osStringComparer) && 280clone.ConfigFilePaths = ConfigFilePaths != null ? new List<string>(ConfigFilePaths) : null;