Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--main/src/addins/MonoDevelop.AspNetCore/MonoDevelop.AspNetCore/AspNetCoreRunConfiguration.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/addins/MonoDevelop.AspNetCore/MonoDevelop.AspNetCore/AspNetCoreRunConfiguration.cs b/main/src/addins/MonoDevelop.AspNetCore/MonoDevelop.AspNetCore/AspNetCoreRunConfiguration.cs
index 247dc9db71..4298218c7b 100644
--- a/main/src/addins/MonoDevelop.AspNetCore/MonoDevelop.AspNetCore/AspNetCoreRunConfiguration.cs
+++ b/main/src/addins/MonoDevelop.AspNetCore/MonoDevelop.AspNetCore/AspNetCoreRunConfiguration.cs
@@ -102,7 +102,7 @@ namespace MonoDevelop.AspNetCore
EnvironmentVariables.Add ("ASPNETCORE_ENVIRONMENT", "Development");
#pragma warning disable CS0618 //disables warnings threw by obsolete methods used in nameof()
if (CurrentProfile.LaunchBrowser == null)
- CurrentProfile.LaunchBrowser = pset.GetValue (nameof (LaunchBrowser), true);
+ CurrentProfile.LaunchBrowser = pset.GetValue (nameof (LaunchBrowser), false);
if (string.IsNullOrEmpty (CurrentProfile.TryGetApplicationUrl ())) {
if (CurrentProfile.OtherSettings == null)