3 implementations of Endpoint
Aspire.Hosting.Azure.AppContainers (1)
AzureContainerAppEnvironmentResource.cs (1)
63ReferenceExpression IContainerRegistry.Endpoint => ReferenceExpression.Create($"{ContainerRegistryUrl}");
Aspire.Hosting.Azure.AppService (1)
AzureAppServiceEnvironmentResource.cs (1)
34ReferenceExpression IContainerRegistry.Endpoint =>
Aspire.Hosting.Azure.ContainerRegistry (1)
AzureContainerRegistryResource.cs (1)
32ReferenceExpression IContainerRegistry.Endpoint => ReferenceExpression.Create($"{RegistryEndpoint}");
8 references to Endpoint
Aspire.Hosting.Azure (1)
AzurePublishingContext.cs (1)
245Visit(annotation.ContainerRegistry?.Endpoint, CaptureBicepOutputs);
Aspire.Hosting.Azure.Tests (7)
AzureContainerRegistryTests.cs (1)
35Assert.NotNull(registryInterface.Endpoint);
ContainerRegistryTests.cs (6)
38Assert.NotNull(registry.Endpoint); 73Assert.NotNull(registry.Endpoint); 108Assert.NotNull(publisher.EnvironmentRegistry.Endpoint); 118Assert.NotNull(publisher.ComputeResourceRegistry.Endpoint); 125Assert.Equal(publisher.EnvironmentRegistry.Endpoint.ToString(), 126publisher.ComputeResourceRegistry.Endpoint.ToString());