Example #1
0
 public NuGetter(string mirrorLocation)
 {
     Searcher        = new Searcher();
     Consolidator    = new Consolidator();
     MirrorDirectory = new DirectoryInfo(mirrorLocation);
     Downloader      = new Downloader(MirrorDirectory);
 }
Example #2
0
 public NuGetter(string mirrorLocation, string username, string password)
 {
     Searcher        = new Searcher();
     Consolidator    = new Consolidator();
     MirrorDirectory = new DirectoryInfo(mirrorLocation);
     Downloader      = new Downloader(MirrorDirectory, username, password);
 }