forked from zzzprojects/System.Linq.Dynamic.Core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.json
More file actions
37 lines (28 loc) · 875 Bytes
/
project.json
File metadata and controls
37 lines (28 loc) · 875 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
29
30
31
32
33
34
35
36
37
{
"version": "1.0.0.0-*",
"authors": [ "Stef Heyenrath" ],
"dependencies": {
},
"compilationOptions": {
"emitEntryPoint": true,
"define": [ "NETSTANDARD" ]
},
"compile": [
"../../test/System.Linq.Dynamic.Core.Tests/Helpers/*.cs",
"../../test/System.Linq.Dynamic.Core.Tests/Helpers/Models/*.cs",
"../../test/System.Linq.Dynamic.Core.Tests/Helpers/Entities/Blog.cs",
"../../test/System.Linq.Dynamic.Core.Tests/Helpers/Entities/Post.cs"
],
"frameworks": {
"netstandard1.5": {
"imports": [
],
"dependencies": {
"NETStandard.Library": "1.5.0-rc2-*",
"System.Linq.Dynamic.Core": "1.0.1-beta-00001",
"Microsoft.CSharp": "4.0.1-rc2-*",
"System.Linq.Queryable": "4.0.1-rc2-*"
}
}
}
}