How to go back and forth to using *.dev.localhost #13093
-
|
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? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
AFAIK the only difference you'll see in your project is this line in
The old |
Beta Was this translation helpful? Give feedback.
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.