forked from npgsql/npgsql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.json
More file actions
117 lines (117 loc) · 4.07 KB
/
project.json
File metadata and controls
117 lines (117 loc) · 4.07 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"version": "3.1.0-*",
"owners": [
"Shay Rojansky",
"Emil Lenngren",
"Francisco Figueiredo Jr.",
"Kenji Uno"
],
"authors": [
"Shay Rojansky",
"Emil Lenngren",
"Francisco Figueiredo Jr.",
"Kenji Uno",
"Jon Asher",
"Josh Cooley",
"Federico Di Gregorio",
"Jon Hanna",
"Chris Morgan",
"Dave Page",
"Glen Parker",
"Brar Piening",
"Hiroshi Saito"
],
"description": "Npgsql is a .NET data provider for PostgreSQL, 100% implemented in C# code. PostgreSQL 9.x and above is officially supported, other versions may work.",
"iconUrl": "http://www.npgsql.org/img/postgresql.gif",
"repository": {
"type": "git",
"url": "git://github.com/npgsql/npgsql"
},
"compile": "../Shared/*.cs",
"resourceFiles": "NpgsqlMetaData.xml",
"compilationOptions": {
"warningsAsErrors": true,
"define": [ "__MonoCS__" ],
"keyFile": "../../Npgsql.snk"
},
"commands": {
"rewrite-async": "AsyncRewriter"
},
"scripts": {
"prebuild": [
"dnx rewrite-async"
]
},
"dependencies": {
"AsyncRewriter": { "version": "0.7.9", "type": "build" }
},
"frameworks": {
"net45": {
"frameworkAssemblies": {
"System.Collections": { "version": "4.0.0.0", "type": "build" },
"System.Diagnostics.Contracts": { "version": "4.0.0.0", "type": "build" },
"System.Transactions": { "version": "4.0.0.0", "type": "build" },
"System.DirectoryServices": { "version": "4.0.0.0", "type": "build" },
"System.Data": { "version": "4.0.0.0", "type": "build" },
"System.Numerics": { "version": "4.0.0.0", "type": "build" },
"System.Xml": { "version": "4.0.0.0", "type": "build" }
}
},
"net451": {
"frameworkAssemblies": {
"System.Collections": { "version": "4.0.0.0", "type": "build" },
"System.Diagnostics.Contracts": { "version": "4.0.0.0", "type": "build" },
"System.Transactions": { "version": "4.0.0.0", "type": "build" },
"System.DirectoryServices": { "version": "4.0.0.0", "type": "build" },
"System.Data": { "version": "4.0.0.0", "type": "build" },
"System.Numerics": { "version": "4.0.0.0", "type": "build" },
"System.Xml": { "version": "4.0.0.0", "type": "build" }
}
},
"dnx451": {
"frameworkAssemblies": {
"System.Collections": "4.0.0.0",
"System.Diagnostics.Contracts": "4.0.0.0",
"System.Transactions": "4.0.0.0",
"System.DirectoryServices": "4.0.0.0",
"System.Data": "4.0.0.0",
"System.Numerics": "4.0.0.0",
"System.Xml": "4.0.0.0"
}
},
"dotnet54": {
"dependencies": {
"System.Collections.Concurrent": "4.0.11-*",
"System.Console": "4.0.0-*",
"System.ComponentModel": "4.0.1-*",
"System.ComponentModel.TypeConverter": "4.0.1-*",
"System.Data.Common": "4.0.1-*",
"System.Diagnostics.Contracts": "4.0.1-*",
"System.Diagnostics.Tools": "4.0.1-*",
"System.Globalization": "4.0.11-*",
"System.Globalization.Extensions": "4.0.1-*",
"System.Linq": "4.0.1-*",
"System.Net.NameResolution": "4.0.0-*",
"System.Net.Primitives": "4.0.11-*",
"System.Net.Sockets": "4.1.0-*",
"System.Net.Security": "4.0.0-*",
"System.Net.NetworkInformation": "4.1.0-*",
"System.Runtime": "4.0.21-*",
"System.Runtime.Extensions": "4.0.11-*",
"System.Runtime.InteropServices": "4.0.21-*",
"System.Runtime.Numerics": "4.0.1-*",
"System.Reflection": "4.1.0-*",
"System.Reflection.TypeExtensions": "4.0.1-*",
"System.Security.Cryptography.Primitives": "4.0.0-*",
"System.Security.Cryptography.Algorithms": "4.0.0-*",
"System.Security.Cryptography.X509Certificates": "4.0.0-*",
"System.Security.Principal": "4.0.1-*",
"System.Text.Encoding.Extensions": "4.0.11-*",
"System.Text.RegularExpressions": "4.0.11-*",
"System.Threading": "4.0.11-*",
"System.Threading.Thread": "4.0.0-*",
"System.Threading.Timer": "4.0.1-*"
}
}
}
}