2 implementations of LoginToRegistryAsync
Aspire.Hosting (1)
Publishing\ContainerRuntimeBase.cs (1)
89public virtual async Task LoginToRegistryAsync(string registryServer, string username, string password, CancellationToken cancellationToken)
Aspire.Hosting.Tests (1)
Publishing\FakeContainerRuntime.cs (1)
95public Task LoginToRegistryAsync(string registryServer, string username, string password, CancellationToken cancellationToken)
2 references to LoginToRegistryAsync
Aspire.Hosting.Azure (1)
AcrLoginService.cs (1)
79await _containerRuntime.LoginToRegistryAsync(registryEndpoint, AcrUsername, refreshToken, cancellationToken).ConfigureAwait(false);
Aspire.Hosting.Azure.Tests (1)
FakeAcrLoginService.cs (1)
38await _containerRuntime.LoginToRegistryAsync(registryEndpoint, AcrUsername, "fake-refresh-token", cancellationToken);