forked from npgsql/npgsql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGuids.cs
More file actions
19 lines (17 loc) · 1.03 KB
/
Guids.cs
File metadata and controls
19 lines (17 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Guids.cs
// MUST match guids.h
using System;
namespace Npgsql.VisualStudio.Provider
{
static class GuidList
{
public const string guidNpgsqlDdexProviderPkgString = "958b9481-2712-4670-9a62-8fe65e5beea7";
public const string guidNpgsqlDdexProviderCmdSetToolsMenuString = "095c8e0d-0072-4599-95b8-ade172bfd544";
public const string guidNpgsqlDdexProviderCmdSetProjMenuString = "8f7e0fee-39f0-4c80-a37f-fe0216f927c9";
public const string guidNpgsqlDdexProviderDataProviderString = "70ba90f8-3027-4aF1-9b15-37abbd48744c";
public const string guidNpgsqlDdexProviderDataSourceString = "7931728a-ebfb-4677-ad6b-995e29AA15c2";
public const string guidNpgsqlDdexProviderObjectFactoryString = "555cd66B-3393-4bab-84d9-3f2caa639699";
public static readonly Guid guidNpgsqlDdexProviderCmdSetToolsMenu = new Guid(guidNpgsqlDdexProviderCmdSetToolsMenuString);
public static readonly Guid guidNpgsqlDdexProviderCmdSetProjMenu = new Guid(guidNpgsqlDdexProviderCmdSetProjMenuString);
};
}