11 writes to Url
Aspire.Dashboard (1)
Configuration\PostConfigureDashboardOptions.cs (1)
45
options.ResourceServiceClient.
Url
= resourceServiceUrl;
Aspire.Dashboard.Tests (10)
DashboardOptionsTests.cs (8)
99
options.ResourceServiceClient.
Url
= "invalid";
111
options.ResourceServiceClient.
Url
= "http://localhost";
125
options.ResourceServiceClient.
Url
= "http://localhost";
140
options.ResourceServiceClient.
Url
= "http://localhost";
155
options.ResourceServiceClient.
Url
= "http://localhost";
169
options.ResourceServiceClient.
Url
= "http://localhost";
183
options.ResourceServiceClient.
Url
= "http://localhost";
196
options.ResourceServiceClient.
Url
= "http://localhost";
Integration\DashboardClientAuthTests.cs (1)
122
Url
= serverAddress
Model\DashboardClientTests.cs (1)
33
Url
= "http://localhost:12345"
3 references to Url
Aspire.Dashboard (3)
Configuration\DashboardOptions.cs (3)
38
if (!string.IsNullOrEmpty(
Url
))
40
if (!Uri.TryCreate(
Url
, UriKind.Absolute, out _parsedUrl))
42
errorMessage = $"Failed to parse resource service client endpoint URL '{
Url
}'.";