In ASP.NET Core 3.1, dotnet watch start did not open a window and i dont know if it started http and https. In the lates ASP.NET 5 a window with the http address goes up. I dont want windows to go up. How can this be configured? I dont find anything for that which worked.
Its like:
watch : Started info: Microsoft.Hosting.Lifetime[0] Now listening on: http://localhost:5000 info: Microsoft.Hosting.Lifetime[0] Now listening on: https://localhost:5001
Regards
Remove launchBrowser from launchSettings.json inside Properties folder
"mvctest": {
"commandName": "Project",
"dotnetRunMessages": "true",
"launchBrowser": true, /* this one */
"applicationUrl": "https://localhost:5001;http://localhost:5000",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With