File tree 2 files changed +4
-4
lines changed
src/Microsoft.Performance.SDK/Options
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -50,12 +50,12 @@ private protected PluginOption()
50
50
/// value it was set to. This means that this value will be <c>false</c> even if the option's value is
51
51
/// manually set to its default value.
52
52
/// </summary>
53
- internal bool IsUsingDefault { get ; private protected set ; }
53
+ public bool IsUsingDefault { get ; private protected set ; }
54
54
55
55
/// <summary>
56
56
/// Applies the default value to this option.
57
57
/// </summary>
58
- internal abstract void ApplyDefault ( ) ;
58
+ public abstract void ApplyDefault ( ) ;
59
59
60
60
/// <summary>
61
61
/// Raises the <see cref="OptionChanged"/> event.
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ public T CurrentValue
51
51
{
52
52
return this . currentValue ;
53
53
}
54
- internal set
54
+ set
55
55
{
56
56
this . IsUsingDefault = isApplyingDefault ;
57
57
@@ -61,7 +61,7 @@ internal set
61
61
}
62
62
63
63
/// <inheritdoc />
64
- internal override void ApplyDefault ( )
64
+ public override void ApplyDefault ( )
65
65
{
66
66
this . isApplyingDefault = true ;
67
67
this . CurrentValue = this . DefaultValue ;
You can’t perform that action at this time.
0 commit comments