-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.json
38 lines (36 loc) · 952 Bytes
/
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
{
"dependencies": {
"Microsoft.NETCore.App": {
// "version": "1.0.0", //local
"version": "1.0.0", //deployment
"type": "platform"
},
"Microsoft.AspNetCore.Mvc": "1.0.0",
"Microsoft.AspNetCore.StaticFiles": "1.0.0",
"Microsoft.AspNetCore.Session": "1.0.0",
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0",
"Microsoft.Extensions.Logging.Console": "1.0.0",
"MySql.Data.Core" : "7.0.4-IR-191", //use of mysql
"Dapper" : "1.50.2", //use of dapper
"CryptoHelper": "2.0.0" // This is our cryptography package
},
"frameworks": {
"netcoreapp1.0": {}
},
"buildOptions": {
"emitEntryPoint": true,
"debugType": "portable",
"preserveCompilationContext": true
},
"tools":{
"Microsoft.DotNet.Watcher.Tools": "1.0.0-preview2-final"
},
"publishOptions": {
"include": [
"Content",
"Views",
"web.config",
"appsettings.json"
]
}
}