11 writes to Url
Aspire.Dashboard (1)
Configuration\PostConfigureDashboardOptions.cs (1)
57
options.ResourceServiceClient.
Url
= resourceServiceUrl;
Aspire.Dashboard.Tests (10)
DashboardOptionsTests.cs (8)
106
options.ResourceServiceClient.
Url
= "invalid";
118
options.ResourceServiceClient.
Url
= "http://localhost";
132
options.ResourceServiceClient.
Url
= "http://localhost";
147
options.ResourceServiceClient.
Url
= "http://localhost";
162
options.ResourceServiceClient.
Url
= "http://localhost";
176
options.ResourceServiceClient.
Url
= "http://localhost";
190
options.ResourceServiceClient.
Url
= "http://localhost";
203
options.ResourceServiceClient.
Url
= "http://localhost";
Integration\DashboardClientAuthTests.cs (1)
119
Url
= serverAddress
Model\DashboardClientTests.cs (1)
31
Url
= "http://localhost:12345"
3 references to Url
Aspire.Dashboard (3)
Configuration\DashboardOptions.cs (3)
42
if (!string.IsNullOrEmpty(
Url
))
44
if (!Uri.TryCreate(
Url
, UriKind.Absolute, out _parsedUrl))
46
errorMessage = $"Failed to parse resource service client endpoint URL '{
Url
}'.";