added some development tools
[windows-sources.git] / developer / VSSDK / Samples / Basic_Source_Control_Provider / C# / Properties / Guids.cs
blob0e883ab097bf818d0b5f55f07fc4a6075ac13523
1 /***************************************************************************
3 Copyright (c) Microsoft Corporation. All rights reserved.
4 THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF
5 ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY
6 IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR
7 PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.
9 ***************************************************************************/
11 using System;
13 namespace Microsoft.Samples.VisualStudio.SourceControlIntegration.BasicSccProvider
15 /// <summary>
16 /// This class is used only to expose the list of Guids used by this package.
17 /// This list of guids must match the set of Guids used inside the VSCT file.
18 /// </summary>
19 static class GuidList
21 // Now define the list of guids as public static members.
23 // Unique ID of the source control provider; this is also used as the command UI context to show/hide the pacakge UI
24 public static readonly Guid guidSccProvider = new Guid("{ADC98052-0000-41D1-A6C3-704E6C1A3DE2}");
25 // The guid of the source control provider service (implementing IVsSccProvider interface)
26 public static readonly Guid guidSccProviderService = new Guid("{ADC98052-1000-41D1-A6C3-704E6C1A3DE2}");
27 // The guid of the source control provider package (implementing IVsPackage interface)
28 public static readonly Guid guidSccProviderPkg = new Guid("{ADC98052-2000-41D1-A6C3-704E6C1A3DE2}");
29 // Other guids for menus and commands
30 public static readonly Guid guidSccProviderCmdSet = new Guid("{ADC98052-5743-4feb-a929-2938249cba26}");