Skip to content

Commit

Permalink
Merge pull request #14059 from heejaechang/oopOff
Browse files Browse the repository at this point in the history
turn off OOP by default
  • Loading branch information
srivatsn authored Sep 25, 2016
2 parents 872c8a4 + 0757bf9 commit 2cda027
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ internal static class RemoteHostOptions
public const string OptionName = "FeatureManager/Features";

[ExportOption]
public static readonly Option<bool> RemoteHost = new Option<bool>(OptionName, nameof(RemoteHost), defaultValue: true);
public static readonly Option<bool> RemoteHost = new Option<bool>(OptionName, nameof(RemoteHost), defaultValue: false);

[ExportOption]
public static readonly Option<int> SolutionChecksumMonitorBackOffTimeSpanInMS = new Option<int>(OptionName, nameof(SolutionChecksumMonitorBackOffTimeSpanInMS), defaultValue: 10000);
Expand Down

0 comments on commit 2cda027

Please sign in to comment.