Skip to content

Commit

Permalink
Fix PythiaOptions (#59565)
Browse files Browse the repository at this point in the history
  • Loading branch information
tmat authored Feb 15, 2022
1 parent 3294cef commit 10a9d97
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ internal static class PythiaOptions
{
public const string LocalRegistryPath = @"Roslyn\Internal\OnOff\Features\";

public static readonly Option2<bool> ShowDebugInfo = new(
public static readonly Option<bool> ShowDebugInfo = new(
"InternalFeatureOnOffOptions", nameof(ShowDebugInfo), defaultValue: false,
storageLocation: new LocalUserProfileStorageLocation(LocalRegistryPath + nameof(ShowDebugInfo)));

public static readonly Option2<bool> RemoveRecommendationLimit = new(
public static readonly Option<bool> RemoveRecommendationLimit = new(
"InternalFeatureOnOffOptions", nameof(RemoveRecommendationLimit), defaultValue: false,
storageLocation: new LocalUserProfileStorageLocation(LocalRegistryPath + nameof(RemoveRecommendationLimit)));
}
Expand Down

0 comments on commit 10a9d97

Please sign in to comment.