added some development tools
[windows-sources.git] / developer / VSSDK / Samples / WPF_Toolwindow / C# / Misc / Guids.cs
blob267b99dc6bb4f0b9c3bd799f6fffe30a4782996f
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.IDE.ToolWindow
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 GuidsList
21 // Now define the list of guids as public static members.
22 [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
23 public static readonly Guid guidClientPkg = new Guid("{01069CDD-95CE-4620-AC21-DDFF6C57F012}");
24 public static readonly Guid guidClientCmdSet = new Guid("{1227033A-2F60-4bd6-8208-B43EC8C12510}");
26 /// <summary>
27 /// This Guid is the persistence guid for the output window.
28 /// It can be found by running this sample, bringing up the output window,
29 /// selecting it in the Persisted window and then looking in the Properties
30 /// window.
31 /// </summary>
32 public static readonly Guid guidOutputWindowFrame = new Guid("{34e76e81-ee4a-11d0-ae2e-00a0c90fffc3}");