Skip to content

Commit 24ad6fc

Browse files
authored
Merge pull request #30 from mast-eu/UpdatePluginSettings
Use GUID, instead of plugin name, as key for plugin settings.
2 parents 1e2531a + ab11f6f commit 24ad6fc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/GitExtensions.GerritPlugin/GerritPlugin.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ public class GerritPlugin : GitPluginBase, IGitPluginForRepository
5252
// public only because of FormTranslate
5353
public GerritPlugin() : base(true)
5454
{
55-
SetNameAndDescription("Gerrit Code Review");
55+
Id = new Guid("98AC833D-21F0-4FD7-8A0F-5616E093FC59");
56+
Name = "Gerrit Code Review";
5657
Translate();
5758
Icon = Resources.IconGerrit;
5859
}

0 commit comments

Comments
 (0)