forked from npgsql/npgsql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNpgsqlDataObjectSupport.cs
More file actions
28 lines (26 loc) · 909 Bytes
/
NpgsqlDataObjectSupport.cs
File metadata and controls
28 lines (26 loc) · 909 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/********************************************************
* ADO.NET 2.0 Data Provider for SQLite Version 3.X
* Written by Robert Simpson (robert@blackcastlesoft.com)
*
* Released to the public domain, use at your own risk!
********************************************************/
namespace Npgsql.Designer
{
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.VisualStudio.Data;
using Microsoft.VisualStudio.OLE.Interop;
using Microsoft.VisualStudio.Data.AdoDotNet;
/// <summary>
/// Doesn't do much other than provide the DataObjectSupport base object with a location
/// where the XML resource can be found.
/// </summary>
internal sealed class NpgsqlDataObjectSupport : DataObjectSupport
{
public NpgsqlDataObjectSupport()
: base("Npgsql.Designer.SQLiteDataObjectSupport", typeof(NpgsqlDataObjectSupport).Assembly)
{
}
}
}