forked from npgsql/npgsql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNpgsqlDataViewSupport.cs
More file actions
38 lines (35 loc) · 1.14 KB
/
NpgsqlDataViewSupport.cs
File metadata and controls
38 lines (35 loc) · 1.14 KB
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
29
30
31
32
33
34
35
36
37
38
/********************************************************
* 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>
/// Provides DataViewSupport with a location where the XML file is for the Server Explorer's view.
/// </summary>
internal sealed class NpgsqlDataViewSupport : DataViewSupport
{
public NpgsqlDataViewSupport()
: base(String.Format("Npgsql.Designer.SQLiteDataViewSupport{0}", GetVSVersion()), typeof(NpgsqlDataViewSupport).Assembly)
{
}
private static string GetVSVersion()
{
switch (System.Diagnostics.FileVersionInfo.GetVersionInfo(Environment.GetCommandLineArgs()[0]).FileMajorPart)
{
case 8:
return "2005";
default:
return "2008";
}
}
}
}