-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.json
74 lines (67 loc) · 1.93 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"version": "1.0.0",
"authors": ["Das Jott"],
"description": "Testprojekt. Muss doch irgendwie gehen!",
"webroot": "wwwroot",
"exclude": [
"wwwroot"
],
"packExclude": [
"**.kproj",
"**.user",
"**.vspscc"
],
"configurations": {
"Debug": {
"compilationOptions": {
"define": ["DEBUG", "TRACE"],
"optimize": false
}
},
"Release": {
"compilationOptions": {
"define": ["RELEASE", "TRACE"],
"optimize": true
}
}
},
"frameworks": {
"dnx451": {}
},
"dependencies": {
"Microsoft.AspNet.Server.Kestrel": "1.0.0-rc1-final",
"Microsoft.AspNet.IISPlatformHandler": "1.0.0-rc1-final",
"Microsoft.AspNet.Diagnostics": "1.0.0-rc1-final",
"Microsoft.AspNet.Mvc": "6.0.0-rc1-final",
"Microsoft.AspNet.StaticFiles": "1.0.0-rc1-final",
"Microsoft.Extensions.Logging.Console": "1.0.0-rc1-final",
"Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final",
"EntityFramework.Sqlite": "7.0.0-rc1-final",
"EntityFramework.Sqlite.Design": "7.0.0-rc1-final",
"EntityFramework.Commands": "7.0.0-rc1-final",
"Less": "3.0",
"jQuery": "2.2.0",
"jQuery.UI.Combined": "1.11.4",
"Bootstrap.Less": "3.3.6",
"Bootbox.JS": "4.4.0",
"bootstrap.chosen": "1.0.0",
"HtmlAgilityPack": "1.4.9"
},
"commands": {
"debug": "Microsoft.AspNet.Server.Kestrel --server.urls http://localhost:5004",
"release": "Microsoft.AspNet.Server.Kestrel --server.urls http://localhost:5004 --configuration Release",
"add-migration": "EntityFramework.Commands migrations add",
"update-database": "EntityFramework.Commands database update"
},
"scripts": {
"prebuild": "",
"postbuild": "",
"prepack": "",
"postpack": "",
"prepublish": "",
"postpublish": "",
"prerestore": "",
"postrestore": "%project:Directory%/.scripts/installContents.sh %project:Directory%",
"prepare": ""
}
}