Skip to content

Commit

Permalink
turn off OOP by default
Browse files Browse the repository at this point in the history
  • Loading branch information
heejaechang committed Sep 25, 2016
1 parent 872c8a4 commit 0757bf9
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 0757bf9

Please sign in to comment.