From 26a04ea2feba92aee1c00d3fa615bbb0002e91b7 Mon Sep 17 00:00:00 2001 From: Bjarke Berg Date: Wed, 23 Sep 2020 17:22:06 +0200 Subject: [PATCH] Added launchSettings to template Signed-off-by: Bjarke Berg --- .../Properties/launchSettings.json | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 build/templates/UmbracoSolution/Properties/launchSettings.json diff --git a/build/templates/UmbracoSolution/Properties/launchSettings.json b/build/templates/UmbracoSolution/Properties/launchSettings.json new file mode 100644 index 0000000000..130f45dedf --- /dev/null +++ b/build/templates/UmbracoSolution/Properties/launchSettings.json @@ -0,0 +1,26 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:5000", + "sslPort": 5001 + } + }, + "profiles": { + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "Umbraco.Web.UI.NetCore": { + "commandName": "Project", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + } + } +}