Suppress msedge first run experience when debugging

This commit is contained in:
Steve Sanderson 2019-11-26 20:34:19 +00:00
parent 3579d8fca2
commit 99883719af
1 changed files with 1 additions and 1 deletions

View File

@ -276,7 +276,7 @@ namespace Microsoft.AspNetCore.Builder
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
{
return $@"<p>Press Win+R and enter the following:</p>
<p><strong><code>msedge --remote-debugging-port={debugggerPort} --user-data-dir=""{profilePath}"" {appRootUrl}</code></strong></p>";
<p><strong><code>msedge --remote-debugging-port={debugggerPort} --user-data-dir=""{profilePath}"" --no-first-run {appRootUrl}</code></strong></p>";
}
else if (RuntimeInformation.IsOSPlatform(OSPlatform.OSX))
{