PageRenderTime 26ms CodeModel.GetById 0ms RepoModel.GetById 1ms app.codeStats 0ms

/Visual Studio 2008/CSVSPackageWPFToolWindow/Guids.cs

#
C# | 15 lines | 11 code | 2 blank | 2 comment | 0 complexity | 0201d62f04c86a2817d8734ecad1f07a MD5 | raw file
  1. // Guids.cs
  2. // MUST match guids.h
  3. using System;
  4. namespace Company.VSPackageWPFToolWindow
  5. {
  6. static class GuidList
  7. {
  8. public const string guidVSPackageWPFToolWindowPkgString = "31921cf1-2895-4725-aec7-a9c6f994018b";
  9. public const string guidVSPackageWPFToolWindowCmdSetString = "43ef812a-a984-4b42-b80a-98151b688722";
  10. public const string guidToolWindowPersistanceString = "1c0ed058-d9bf-44f0-97fa-18ae474a30f5";
  11. public static readonly Guid guidVSPackageWPFToolWindowCmdSet = new Guid(guidVSPackageWPFToolWindowCmdSetString);
  12. };
  13. }