3 implementations of LoginToRegistryAsync
Aspire.Hosting (1)
Publishing\ContainerRuntimeBase.cs (1)
325
public virtual async Task
LoginToRegistryAsync
(string registryServer, string username, string password, CancellationToken cancellationToken)
Aspire.Hosting.Tests (1)
Publishing\ContainerRuntimeBaseTests.cs (1)
402
public Task
LoginToRegistryAsync
(string registryServer, string username, string password, CancellationToken cancellationToken) => Task.CompletedTask;
Aspire.Hosting.TestUtilities (1)
Publishing\FakeContainerRuntime.cs (1)
106
public Task
LoginToRegistryAsync
(string registryServer, string username, string password, CancellationToken cancellationToken)
2 references to LoginToRegistryAsync
Aspire.Hosting.Azure (1)
AcrLoginService.cs (1)
99
await containerRuntime.
LoginToRegistryAsync
(registryEndpoint, AcrUsername, refreshToken, cancellationToken).ConfigureAwait(false);
Aspire.Hosting.Azure.Tests (1)
FakeAcrLoginService.cs (1)
37
await containerRuntime.
LoginToRegistryAsync
(registryEndpoint, AcrUsername, "fake-refresh-token", cancellationToken);