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)
1166return await pushOptions.GetFullRemoteImageNameAsync(registry, cancellationToken).ConfigureAwait(false);
Aspire.Hosting.Tests (11)
ContainerImagePushOptionsTests.cs (11)
23var result = await options.GetFullRemoteImageNameAsync(registry); 42var result = await options.GetFullRemoteImageNameAsync(registry); 61var result = await options.GetFullRemoteImageNameAsync(registry); 81var result = await options.GetFullRemoteImageNameAsync(registry); 101var result = await options.GetFullRemoteImageNameAsync(registry); 120var result = await options.GetFullRemoteImageNameAsync(registry); 139var result = await options.GetFullRemoteImageNameAsync(registry); 158var result = await options.GetFullRemoteImageNameAsync(registry); 177await Assert.ThrowsAsync<InvalidOperationException>(() => options.GetFullRemoteImageNameAsync(registry)); 193await Assert.ThrowsAsync<InvalidOperationException>(() => options.GetFullRemoteImageNameAsync(registry)); 207await Assert.ThrowsAsync<ArgumentNullException>(() => options.GetFullRemoteImageNameAsync(null!));