V9 Netcore: Fix missing launch browser param for dotnet run from template (#10238)

* Adds in launchBrowser for Kestrel/Propject profile so running dotnet run from CLI will launch browser

* Keep in sync with the template file that will we ship
This commit is contained in:
Warren Buckley
2021-05-06 18:56:04 +01:00
committed by GitHub
parent 6e75006f0b
commit dabecbf7af
2 changed files with 5 additions and 1 deletions

View File

@@ -1,4 +1,5 @@
{
"$schema": "https://json.schemastore.org/launchsettings.json",
"iisSettings": {
"windowsAuthentication": false,
"anonymousAuthentication": true,
@@ -17,6 +18,7 @@
},
"Umbraco.Web.UI.NetCore": {
"commandName": "Project",
"launchBrowser": true,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
},