3 implementations of Name
Aspire.Hosting.Azure.AppContainers (1)
AzureContainerAppEnvironmentResource.cs (1)
188ReferenceExpression IContainerRegistry.Name => ReferenceExpression.Create($"{ContainerRegistryName}");
Aspire.Hosting.Azure.AppService (1)
AzureAppServiceEnvironmentResource.cs (1)
223ReferenceExpression IContainerRegistry.Name =>
Aspire.Hosting.Azure.ContainerRegistry (1)
AzureContainerRegistryResource.cs (1)
27ReferenceExpression IContainerRegistry.Name => ReferenceExpression.Create($"{NameOutputReference}");
10 references to Name
Aspire.Hosting.Azure (3)
AzureEnvironmentResourceHelpers.cs (2)
34var registryName = await registry.Name.GetValueAsync(context.CancellationToken).ConfigureAwait(false) ?? 69var registryName = await registry.Name.GetValueAsync(context.CancellationToken).ConfigureAwait(false) ??
AzurePublishingContext.cs (1)
344Visit(annotation.ContainerRegistry?.Name, CaptureBicepOutputs);
Aspire.Hosting.Azure.Tests (7)
AzureContainerRegistryTests.cs (1)
32Assert.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());