6 references to EndpointAnnotation
Aspire.Hosting (2)
ResourceBuilderExtensions.cs (2)
416endpoint = new EndpointAnnotation(ProtocolType.Tcp, name: endpointName); 446var annotation = new EndpointAnnotation(
Aspire.Hosting.Dapr (4)
DaprDistributedApplicationLifecycleHook.cs (4)
159daprCli.Annotations.Add(new EndpointAnnotation(ProtocolType.Tcp, uriScheme: "http", name: "grpc", port: sidecarOptions?.DaprGrpcPort)); 160daprCli.Annotations.Add(new EndpointAnnotation(ProtocolType.Tcp, uriScheme: "http", name: "http", port: sidecarOptions?.DaprHttpPort)); 161daprCli.Annotations.Add(new EndpointAnnotation(ProtocolType.Tcp, uriScheme: "http", name: "metrics", port: sidecarOptions?.MetricsPort)); 164daprCli.Annotations.Add(new EndpointAnnotation(ProtocolType.Tcp, name: "profile", port: sidecarOptions?.ProfilePort, uriScheme: "http"));