Skip to content

Commit

Permalink
+ Added documentations for VSIX related constants
Browse files Browse the repository at this point in the history
  • Loading branch information
wmjordan committed Feb 14, 2023
1 parent 351cf43 commit 7162800
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Codist/CodistPackage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ namespace Codist
[ProvideAutoLoad(UIContextGuids80.NoSolution, PackageAutoLoadFlags.BackgroundLoad)]
sealed class CodistPackage : AsyncPackage
{
/// <summary>CodistPackage GUID string.</summary>
/// <summary>CodistPackage GUID string. Should be the same as the one in <c>source.extension.vsixmanifest</c>.</summary>
const string PackageGuidString = "c7b93d20-621f-4b21-9d28-d51157ef0b94";
static Guid __PackageGuid = new Guid(PackageGuidString);

Expand Down
1 change: 1 addition & 0 deletions Codist/Commands/CommandRegistry.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ namespace Codist.Commands
{
static class CommandRegistry
{
// this value should be the same as the one in guidCodistPackageCmdSet of CodistPackage.vsct
static readonly Guid CommandSetGuid = Guid.Parse("D668A130-CB52-4143-B389-55560823F3D6");

public static CommandID GetID(this Command command) {
Expand Down

0 comments on commit 7162800

Please sign in to comment.