OLD | NEW |
| (Empty) |
1 /* | |
2 * Copyright 2009 The Native Client Authors. All rights reserved. | |
3 * Use of this source code is governed by a BSD-style license that can | |
4 * be found in the LICENSE file. | |
5 */ | |
6 using System; | |
7 | |
8 namespace Google.NaClVsx { | |
9 static class NaClGuids { | |
10 public const string kGuidNaClVsxPackageCmdSetString = | |
11 "03b5cf30-7327-4a5c-a3c9-96e7dc092b96"; | |
12 | |
13 public const string kGuidNaClVsxPackagePkgString = | |
14 "e882b8b3-696d-4633-b119-99aaee515316"; | |
15 | |
16 public const string kGuidNaClVsxProjectFactoryString = | |
17 "16DE46F3-7ED9-4CD4-8543-9C2A6A5F11F0"; | |
18 | |
19 public static readonly Guid kGuidNaClVsxPackageCmdSet = | |
20 new Guid(kGuidNaClVsxPackageCmdSetString); | |
21 | |
22 public static readonly Guid kGuidNaClVsxProjectFactory = | |
23 new Guid(kGuidNaClVsxProjectFactoryString); | |
24 } ; | |
25 } | |
OLD | NEW |