Skip to content

Commit ab11f6f

Browse files
committed
Use GUID, instead of plugin name, as key for plugin settings.
This change was implemented in Git Extensions with PR gitextensions/gitextensions#8995.
1 parent 1e2531a commit ab11f6f

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)