3 implementations of Name
Aspire.Hosting.Azure.AppContainers (1)
AzureContainerAppEnvironmentResource.cs (1)
61ReferenceExpression IContainerRegistry.Name => ReferenceExpression.Create($"{ContainerRegistryName}");
Aspire.Hosting.Azure.AppService (1)
AzureAppServiceEnvironmentResource.cs (1)
38ReferenceExpression IContainerRegistry.Name =>
Aspire.Hosting.Azure.ContainerRegistry (1)
AzureContainerRegistryResource.cs (1)
29ReferenceExpression IContainerRegistry.Name => ReferenceExpression.Create($"{NameOutputReference}");
9 references to Name
Aspire.Hosting.Azure (2)
AzureDeployingContext.cs (1)
247var registryName = await registry.Name.GetValueAsync(cancellationToken).ConfigureAwait(false) ?? throw new InvalidOperationException("Failed to retrieve container registry information.");
AzurePublishingContext.cs (1)
328Visit(annotation.ContainerRegistry?.Name, CaptureBicepOutputs);
Aspire.Hosting.Azure.Tests (7)
AzureContainerRegistryTests.cs (1)
34Assert.NotNull(registryInterface.Name);
ContainerRegistryTests.cs (6)
37Assert.NotNull(registry.Name); 72Assert.NotNull(registry.Name); 107Assert.NotNull(publisher.EnvironmentRegistry.Name); 117Assert.NotNull(publisher.ComputeResourceRegistry.Name); 123Assert.Equal(publisher.EnvironmentRegistry.Name.ToString(), 124publisher.ComputeResourceRegistry.Name.ToString());