11 references to DisabledPackageSources
NuGet.Configuration (11)
PackageSource\PackageSourceProvider.cs (10)
131var disabledSourcesSection = settings.GetSection(ConfigurationConstants.DisabledPackageSources); 512castSettings.AddOrUpdate(sourceSetting.Origin, ConfigurationConstants.DisabledPackageSources, new AddItem(name, "true")); 523Settings.AddOrUpdate(ConfigurationConstants.DisabledPackageSources, new AddItem(name, "true")); 549var disabledSourcesSection = Settings.GetSection(ConfigurationConstants.DisabledPackageSources); 558Settings.Remove(ConfigurationConstants.DisabledPackageSources, disabledSource); 594var disabledSourcesSection = Settings.GetSection(ConfigurationConstants.DisabledPackageSources); 670Settings.Remove(ConfigurationConstants.DisabledPackageSources, existingDisabledSourceItem); 784var disabledSourcesSection = Settings.GetSection(ConfigurationConstants.DisabledPackageSources); 854Settings.Remove(ConfigurationConstants.DisabledPackageSources, existingDisabledSourceItem); 1000var disabledSources = Settings.GetSection(ConfigurationConstants.DisabledPackageSources);
Settings\ConfigurationDefaults.cs (1)
66var disabledPackageSources = _settingsManager.GetSection(ConfigurationConstants.DisabledPackageSources)?.Items.OfType<AddItem>() ?? Enumerable.Empty<AddItem>();