Skip to content

Commit 7162800

Browse files
committed
+ Added documentations for VSIX related constants
1 parent 351cf43 commit 7162800

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Codist/CodistPackage.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ namespace Codist
3333
[ProvideAutoLoad(UIContextGuids80.NoSolution, PackageAutoLoadFlags.BackgroundLoad)]
3434
sealed class CodistPackage : AsyncPackage
3535
{
36-
/// <summary>CodistPackage GUID string.</summary>
36+
/// <summary>CodistPackage GUID string. Should be the same as the one in <c>source.extension.vsixmanifest</c>.</summary>
3737
const string PackageGuidString = "c7b93d20-621f-4b21-9d28-d51157ef0b94";
3838
static Guid __PackageGuid = new Guid(PackageGuidString);
3939

Codist/Commands/CommandRegistry.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ namespace Codist.Commands
66
{
77
static class CommandRegistry
88
{
9+
// this value should be the same as the one in guidCodistPackageCmdSet of CodistPackage.vsct
910
static readonly Guid CommandSetGuid = Guid.Parse("D668A130-CB52-4143-B389-55560823F3D6");
1011

1112
public static CommandID GetID(this Command command) {

0 commit comments

Comments
 (0)