11 references to DisabledPackageSources
NuGet.Configuration (11)
PackageSource\PackageSourceProvider.cs (10)
131var disabledSourcesSection = settings.GetSection(ConfigurationConstants.DisabledPackageSources); 653castSettings.AddOrUpdate(sourceSetting.Origin, ConfigurationConstants.DisabledPackageSources, new AddItem(name, "true")); 664Settings.AddOrUpdate(ConfigurationConstants.DisabledPackageSources, new AddItem(name, "true")); 690var disabledSourcesSection = Settings.GetSection(ConfigurationConstants.DisabledPackageSources); 699Settings.Remove(ConfigurationConstants.DisabledPackageSources, disabledSource); 735var disabledSourcesSection = Settings.GetSection(ConfigurationConstants.DisabledPackageSources); 813Settings.Remove(ConfigurationConstants.DisabledPackageSources, existingDisabledSourceItem); 927var disabledSourcesSection = Settings.GetSection(ConfigurationConstants.DisabledPackageSources); 997Settings.Remove(ConfigurationConstants.DisabledPackageSources, existingDisabledSourceItem); 1143var disabledSources = Settings.GetSection(ConfigurationConstants.DisabledPackageSources);
Settings\ConfigurationDefaults.cs (1)
66var disabledPackageSources = _settingsManager.GetSection(ConfigurationConstants.DisabledPackageSources)?.Items.OfType<AddItem>() ?? Enumerable.Empty<AddItem>();