forked from pauldotknopf/JavaScriptViewEngine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.json
More file actions
52 lines (49 loc) · 1.43 KB
/
project.json
File metadata and controls
52 lines (49 loc) · 1.43 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
{
"version": "1.3.0-*",
"title": "JavaScriptViewEngine",
"description": "An ASP.NET ViewEngine that uses javscript to render markup (for universal rendering).",
"packOptions": {
"summary": "An ASP.NET ViewEngine that uses javscript to render markup (for universal rendering)",
"tags": [ "JavaScript", "aspnet", "mvc", "viewengine" ],
"projectUrl": "https://github.com/pauldotknopf/JavaScriptViewEngine",
"licenseUrl": "https://github.com/pauldotknopf/JavaScriptViewEngine/blob/master/LICENSE"
},
"authors": [ "Paul" ],
"copyright": "2016",
"buildOptions": {
"embed": [
"NodeServices/Content/**/*"
],
"define": [ "DI", "DOTNETCORE", "MVCCORE1" ]
},
"dependencies": {
"Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0-rc2-final",
"Microsoft.AspNetCore.Http.Abstractions": "1.0.0-rc2-final",
"Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.0-rc2-final",
"Microsoft.Extensions.Options": "1.0.0-rc2-final"
},
"frameworks": {
"netstandard1.5": {
"imports": [
"portable-net451+win8"
],
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.0.0-rc2-*",
"type": "platform"
}
},
"buildOptions": {
"define": [ "NETSTANDARD15" ]
}
},
"net451": {
"frameworkAssemblies": {
"System.Net.Http": "4.0.0.0"
},
"buildOptions": {
"define": [ "NET45" ]
}
}
}
}