7 references to EndpointAnnotation
Aspire.Hosting (2)
ResourceBuilderExtensions.cs (2)
484
endpoint = new
EndpointAnnotation
(ProtocolType.Tcp, name: endpointName);
516
var annotation = new
EndpointAnnotation
(
Aspire.Hosting.Azure.Tests (1)
AzureBicepResourceTests.cs (1)
1854
=> new(storage.Resource, new
EndpointAnnotation
(ProtocolType.Tcp, name: name, targetPort: port));
Aspire.Hosting.Dapr (4)
DaprDistributedApplicationLifecycleHook.cs (4)
174
daprCli.Annotations.Add(new
EndpointAnnotation
(ProtocolType.Tcp, uriScheme: "http", name: "grpc", port: sidecarOptions?.DaprGrpcPort));
175
daprCli.Annotations.Add(new
EndpointAnnotation
(ProtocolType.Tcp, uriScheme: "http", name: "http", port: sidecarOptions?.DaprHttpPort));
176
daprCli.Annotations.Add(new
EndpointAnnotation
(ProtocolType.Tcp, uriScheme: "http", name: "metrics", port: sidecarOptions?.MetricsPort));
179
daprCli.Annotations.Add(new
EndpointAnnotation
(ProtocolType.Tcp, name: "profile", port: sidecarOptions?.ProfilePort, uriScheme: "http"));