File tree 3 files changed +4
-1
lines changed
src/GitExtensions.PluginManager
3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 17
17
</PropertyGroup >
18
18
19
19
<ItemGroup >
20
- <PackageReference Include =" GitExtensions.Extensibility" Version =" 0.1.1 " />
20
+ <PackageReference Include =" GitExtensions.Extensibility" Version =" 0.1.* " />
21
21
</ItemGroup >
22
22
23
23
<ItemGroup >
Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ public class Plugin : GitPluginBase
29
29
internal PluginSettings Configuration { get ; private set ; }
30
30
31
31
public Plugin ( )
32
+ : base ( PluginSettings . HasProperties )
32
33
{
33
34
Name = "Plugin Manager" ;
34
35
Description = "Plugin Manager" ;
Original file line number Diff line number Diff line change @@ -31,6 +31,8 @@ public PluginSettings(ISettingsSource source)
31
31
32
32
private static readonly List < ISetting > properties ;
33
33
34
+ public static bool HasProperties => properties . Count > 0 ;
35
+
34
36
static PluginSettings ( )
35
37
{
36
38
properties = new List < ISetting > ( 1 )
You can’t perform that action at this time.
0 commit comments