4 references to ResourceServiceEndpointUrl
Aspire.Hosting (4)
Dashboard\TransportOptionsValidator.cs (4)
58
var resourceServiceEndpointUrl = configuration[KnownConfigNames.
ResourceServiceEndpointUrl
];
61
return ValidateOptionsResult.Fail($"AppHost does not have the {KnownConfigNames.
ResourceServiceEndpointUrl
} setting defined.");
66
return ValidateOptionsResult.Fail($"The {KnownConfigNames.
ResourceServiceEndpointUrl
} setting with a value of '{resourceServiceEndpointUrl}' could not be parsed as a URI.");
71
return ValidateOptionsResult.Fail($"The '{KnownConfigNames.
ResourceServiceEndpointUrl
}' setting must be an https address unless the '{KnownConfigNames.AllowUnsecuredTransport}' environment variable is set to true. This configuration is commonly set in the launch profile. See https://aka.ms/dotnet/aspire/allowunsecuredtransport for more details.");