From e61e9d022b3af7fba93c301a77d98340df105d8b Mon Sep 17 00:00:00 2001 From: Pranav K Date: Thu, 25 Mar 2021 09:17:08 -0700 Subject: [PATCH] Turn off hotReloadProfile for Blazor WebAssembly projects The WebAssembly experience is a bit problematic in preview3 because of runtime issues https://github.com/dotnet/runtime/issues/50190. We'll turn it off in the templates by default to avoid giving a confusing experience out of the box. --- .../Client/Properties/launchSettings.json | 1 - 1 file changed, 1 deletion(-) diff --git a/src/ProjectTemplates/Web.ProjectTemplates/content/ComponentsWebAssembly-CSharp/Client/Properties/launchSettings.json b/src/ProjectTemplates/Web.ProjectTemplates/content/ComponentsWebAssembly-CSharp/Client/Properties/launchSettings.json index f8e619cb4a5b..29e2cda6c5bb 100644 --- a/src/ProjectTemplates/Web.ProjectTemplates/content/ComponentsWebAssembly-CSharp/Client/Properties/launchSettings.json +++ b/src/ProjectTemplates/Web.ProjectTemplates/content/ComponentsWebAssembly-CSharp/Client/Properties/launchSettings.json @@ -29,7 +29,6 @@ "commandName": "Project", "dotnetRunMessages": "true", "launchBrowser": true, - "hotReloadProfile": "blazorwasm", "inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}", //#if(RequiresHttps) "applicationUrl": "https://localhost:5001;http://localhost:5000",