public override async Task InitializeAsync()
        {
            await base.InitializeAsync();

            if (_galleryClient == null)
            {
                _galleryClient = Clients.Gallery;
            }
        }
 public Clients(
     IGalleryClient gallery,
     V3IndexClient v3Index,
     V2V3SearchClient v2v3Search,
     FlatContainerClient flatContainer,
     RegistrationClient registration,
     NuGetExeClient nuGetExe)
 {
     Gallery       = gallery;
     V3Index       = v3Index;
     V2V3Search    = v2v3Search;
     FlatContainer = flatContainer;
     Registration  = registration;
     NuGetExe      = nuGetExe;
 }
Exemple #3
0
 public GalleryTemplatesClient(IGalleryClient galleryClient)
 {
     GalleryClient = galleryClient;
 }
 public GalleryTemplatesClient(IGalleryClient galleryClient)
 {
     GalleryClient = galleryClient;
 }
 public static PushedPackagesFixture Create(IGalleryClient galleryClient)
 {
     return(new PushedPackagesFixture(galleryClient));
 }
 private PushedPackagesFixture(IGalleryClient galleryClient)
 {
     _galleryClient = galleryClient;
 }
Exemple #7
0
 public PushedPackagesFixture(IGalleryClient galleryClient)
 {
     _galleryClient = galleryClient;
 }