void LoadSettings()
        {
            string rootDirectory = Path.Combine(Solution.BaseDirectory, ".nuget");

            Settings = SettingsLoader.LoadDefaultSettings(rootDirectory, reportError: true);
        }
Esempio n. 2
0
        public static ISourceRepositoryProvider CreateSourceRepositoryProvider()
        {
            var settings = SettingsLoader.LoadDefaultSettings();

            return(CreateSourceRepositoryProvider(settings));
        }
 public MonoDevelopNuGetProjectFactory()
     : this(SettingsLoader.LoadDefaultSettings())
 {
 }
 public ConsoleHostNuGetProjectFactory()
     : this(SettingsLoader.LoadDefaultSettings())
 {
 }
 void LoadSettings()
 {
     Settings = SettingsLoader.LoadDefaultSettings(null, reportError: true);
 }
 public MonoDevelopNuGetProjectFactory()
     : this(SettingsLoader.LoadDefaultSettings(), ConfigurationSelector.Default)
 {
 }