-
Notifications
You must be signed in to change notification settings - Fork 927
/
Copy pathproject.json
55 lines (55 loc) · 1.64 KB
/
project.json
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
{
"version": "3.0.1-*",
"authors": [ "Daniel Lo Nigro" ],
"copyright": "Copyright 2014-Present Facebook, Inc",
"title": "ReactJS.NET (ASP.NET Core MVC)",
"description": "ReactJS and Babel tools for ASP.NET Core, including ASP.NET Core MVC. Please refer to project site (http://reactjs.net/) for full installation instructions, usage examples and sample code",
"packOptions": {
"owners": [ "Daniel Lo Nigro" ],
"licenseUrl": "https://github.com/reactjs/React.NET#licence",
"iconUrl": "http://reactjs.net/img/logo_64.png",
"tags": [ "asp.net", "mvc", "asp", "javascript", "js", "react", "facebook", "reactjs", "vnext", "asp.net 5" ],
"projectUrl": "http://reactjs.net/"
},
"configurations": {
"Debug": {
"buildOptions": {
"define": [ "DEBUG", "TRACE", "ASPNETCORE" ]
}
},
"Release": {
"buildOptions": {
"define": [ "RELEASE", "TRACE", "ASPNETCORE" ],
"optimize": true,
"warningsAsErrors": true
}
}
},
"dependencies": {
"Microsoft.AspNetCore.Mvc.Core": "1.0.0",
"Microsoft.AspNetCore.StaticFiles": "1.0.0",
"Microsoft.Extensions.FileProviders.Physical": "1.0.0",
"Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.0",
"Microsoft.Extensions.DependencyInjection": "1.0.0",
"React.Core": {
"target": "project"
}
},
"frameworks": {
"net451": {},
"netstandard16": {
"dependencies": {
"Microsoft.Extensions.Caching.Abstractions": "1.0.0"
}
}
},
"buildOptions": {
"compile": {
"includeFiles": [
"../SharedAssemblyInfo.cs"
]
},
"keyFile": "../key.snk",
"xmlDoc": true
}
}