How to go back and forth to using *.dev.localhost #13093
Answered
by
jrunestone
Paulo Morgado (paulomorgado)
asked this question in
Q&A
|
Creating an Aspire starter "Blazor & Minimal API starter" project using "*.dev.localhost" URLs or not yields, as far as I can tell the same projects. How does one go back and forth from using "*.dev.localhost" URLs? Can it be per-resource? |
Answered by
jrunestone
Nov 23, 2025
Replies: 1 comment 1 reply
|
AFAIK the only difference you'll see in your project is this line in
The old |
1 reply
Answer selected by
paulomorgado
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
AFAIK the only difference you'll see in your project is this line in
AppHost/Properties/launchSettings.json(or something like apphost.run.json for single file):"applicationUrl": "https://myproject.dev.localhost:17293"instead of"applicationUrl": "https://localhost:17293"and you can manually edit the url to go back and forth.The old
localhost:xxxxURL is still being added as an endpoint but the new format has precedence I think.