✅ ASP.NET razor
Why do I have to manually open a web browser and navigate to localhost:5030 to view my web UI? Why doesn't it just open up automatically after running dotnet run?
2 Replies
do you have an
applicationUrl
specified in your launchsettings.json and are you running it with a launch profile?
because if you're not telling it to do that, it won't do itStack Overflow
ASP.NET Core launchSettings.json does not launch browser
I am using dotnet core version 2.1.200.
For my asp.net core application I have following launchSettings.json file:
{
"iisSettings": {
"windowsAuthentication": false,
"anonymousAuthentic...