예제 #1
0
파일: NuGetter.cs 프로젝트: agray/NuGetter
 public NuGetter(string mirrorLocation)
 {
     Searcher        = new Searcher();
     Consolidator    = new Consolidator();
     MirrorDirectory = new DirectoryInfo(mirrorLocation);
     Downloader      = new Downloader(MirrorDirectory);
 }
예제 #2
0
파일: NuGetter.cs 프로젝트: agray/NuGetter
 public NuGetter(string mirrorLocation, string username, string password)
 {
     Searcher        = new Searcher();
     Consolidator    = new Consolidator();
     MirrorDirectory = new DirectoryInfo(mirrorLocation);
     Downloader      = new Downloader(MirrorDirectory, username, password);
 }