13 references to GetFullRemoteImageNameAsync
Aspire.Hosting (2)
ApplicationModel\ContainerImagePushOptions.cs (1)
14/// and <see cref="RemoteImageTag"/> specifies the tag to apply. Use <see cref="GetFullRemoteImageNameAsync"/>
ApplicationModel\ResourceExtensions.cs (1)
1194return await pushOptions.GetFullRemoteImageNameAsync(registry, cancellationToken).ConfigureAwait(false);
Aspire.Hosting.Tests (11)
ContainerImagePushOptionsTests.cs (11)
24var result = await options.GetFullRemoteImageNameAsync(registry); 43var result = await options.GetFullRemoteImageNameAsync(registry); 62var result = await options.GetFullRemoteImageNameAsync(registry); 82var result = await options.GetFullRemoteImageNameAsync(registry); 102var result = await options.GetFullRemoteImageNameAsync(registry); 121var result = await options.GetFullRemoteImageNameAsync(registry); 140var result = await options.GetFullRemoteImageNameAsync(registry); 159var result = await options.GetFullRemoteImageNameAsync(registry); 178await Assert.ThrowsAsync<InvalidOperationException>(() => options.GetFullRemoteImageNameAsync(registry)); 194await Assert.ThrowsAsync<InvalidOperationException>(() => options.GetFullRemoteImageNameAsync(registry)); 208await Assert.ThrowsAsync<ArgumentNullException>(() => options.GetFullRemoteImageNameAsync(null!));