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}");
10 references to Name
Aspire.Hosting.Azure (3)
AzureDeployingContext.cs (2)
292var registryName = await registry.Name.GetValueAsync(cancellationToken).ConfigureAwait(false) ?? 349var registryName = await registry.Name.GetValueAsync(cancellationToken).ConfigureAwait(false) ??
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());