1 write to UseAllEndpoints
Aspire.Hosting (1)
ResourceBuilderExtensions.cs (1)
1418endpointReferenceAnnotation.UseAllEndpoints = true;
7 references to UseAllEndpoints
Aspire.Hosting (2)
ApplicationModel\EndpointReferenceAnnotation.cs (1)
25/// Gets the set of specific endpoint names that are referenced. When <see cref="UseAllEndpoints"/> is <see langword="true"/>, this set is ignored.
ResourceBuilderExtensions.cs (1)
827var isIncludedByDefault = annotation.UseAllEndpoints && !endpoint.ExcludeReferenceEndpoint;
Aspire.Hosting.Blazor (2)
BlazorGatewayExtensions.cs (2)
629if (!annotation.UseAllEndpoints) 664if (!endpointRef.UseAllEndpoints)
Aspire.Hosting.Blazor.Tests (3)
WithBlazorAppTests.cs (3)
402Assert.True(endpointRef.UseAllEndpoints); 431Assert.False(endpointRef.UseAllEndpoints); 472Assert.False(endpointRef.UseAllEndpoints);