-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathVSCommandTable.cs
More file actions
32 lines (29 loc) · 1.23 KB
/
Copy pathVSCommandTable.cs
File metadata and controls
32 lines (29 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// ------------------------------------------------------------------------------
// <auto-generated>
// This file was generated by VSIX Synchronizer
// </auto-generated>
// ------------------------------------------------------------------------------
namespace CodingWithCalvin.OpenInNotepadPlusPlus
{
using System;
/// <summary>
/// Helper class that exposes all GUIDs used across VS Package.
/// </summary>
internal sealed partial class PackageGuids
{
public const string guidPackageString = "6aeabf47-7bdc-47b3-ade7-06f5bae6d868";
public static Guid guidPackage = new Guid(guidPackageString);
public const string guidOpenInNppCmdSetString = "f781199d-54a8-4a18-ac9d-a91f292587db";
public static Guid guidOpenInNppCmdSet = new Guid(guidOpenInNppCmdSetString);
public const string guidIconsString = "3a06fde0-497f-4b1f-9150-5b1c5879e8af";
public static Guid guidIcons = new Guid(guidIconsString);
}
/// <summary>
/// Helper class that encapsulates all CommandIDs uses across VS Package.
/// </summary>
internal sealed partial class PackageIds
{
public const int OpenInNpp = 0x0100;
public const int NotepadPlusPlus = 0x0001;
}
}