12 writes to ProxylessEndpointPortRangeEnd
Aspire.Hosting (2)
Dcp\DcpOptions.cs (2)
340
options.
ProxylessEndpointPortRangeEnd
= dcpPublisherConfiguration.GetValue(nameof(options.ProxylessEndpointPortRangeEnd), options.ProxylessEndpointPortRangeEnd);
378
options.
ProxylessEndpointPortRangeEnd
= end;
Aspire.Hosting.Tests (10)
Dcp\DcpCliArgsTests.cs (1)
149
ProxylessEndpointPortRangeEnd
= 10000,
Dcp\DcpExecutorTests.cs (9)
1072
ProxylessEndpointPortRangeEnd
= rangeEnd
1115
ProxylessEndpointPortRangeEnd
= allocatedPort
1152
ProxylessEndpointPortRangeEnd
= allocatedPort
1195
ProxylessEndpointPortRangeEnd
= allocatedPort
1233
ProxylessEndpointPortRangeEnd
= allocatedPort
1271
ProxylessEndpointPortRangeEnd
= allocatedPort
1308
ProxylessEndpointPortRangeEnd
= allocatedPort
1346
ProxylessEndpointPortRangeEnd
= allocatedPort
1393
ProxylessEndpointPortRangeEnd
= allocatedPort
8 references to ProxylessEndpointPortRangeEnd
Aspire.Hosting (6)
Dcp\DcpOptions.cs (5)
166
if (!PortRange.IsValidPort(options.
ProxylessEndpointPortRangeEnd
))
168
builder.AddError($"The proxyless endpoint port range end must be between {PortRange.MinPort} and {PortRange.MaxPort}.", nameof(options.
ProxylessEndpointPortRangeEnd
));
171
if (options.ProxylessEndpointPortRangeStart > options.
ProxylessEndpointPortRangeEnd
)
340
options.ProxylessEndpointPortRangeEnd = dcpPublisherConfiguration.GetValue(nameof(options.
ProxylessEndpointPortRangeEnd
), options.
ProxylessEndpointPortRangeEnd
);
Dcp\ProxylessEndpointPortAllocator.cs (1)
48
options.Value.
ProxylessEndpointPortRangeEnd
,
Aspire.Hosting.Tests (2)
Dcp\DcpCliArgsTests.cs (1)
173
Assert.Equal(20001, dcpOptions.
ProxylessEndpointPortRangeEnd
);
Dcp\DcpExecutorTests.cs (1)
10185
Assert.InRange(port, defaultOptions.ProxylessEndpointPortRangeStart, defaultOptions.
ProxylessEndpointPortRangeEnd
);