Blame view

src/Maps/project.json 3.12 KB
32912d0b   Administrator   first commit
1
2
3
  {
      "dependencies": {
          "Microsoft.NETCore.App": {
f8166c74   Yarik   Version change
4
              "version": "1.1.0",
32912d0b   Administrator   first commit
5
6
7
8
9
10
11
12
13
              "type": "platform"
          },
          "Microsoft.ApplicationInsights.AspNetCore": "1.0.0",
          "Microsoft.AspNetCore.Diagnostics": "1.0.0",
          "Microsoft.AspNetCore.Mvc": "1.0.1",
          "Microsoft.AspNetCore.Razor.Tools": {
              "version": "1.0.0-preview2-final",
              "type": "build"
          },
3fbd6551   Administrator   add Cors
14
          "Microsoft.AspNetCore.Cors": "1.0.1",
a036a6c0   Yarik   Console
15
          "Microsoft.AspNetCore.Routing": "1.1.0",
32912d0b   Administrator   first commit
16
17
18
19
20
21
22
23
24
25
26
          "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0",
          "Microsoft.AspNetCore.Server.Kestrel": "1.0.1",
          "Microsoft.AspNetCore.StaticFiles": "1.0.0",
          "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0",
          "Microsoft.Extensions.Configuration.Json": "1.0.0",
          "Microsoft.Extensions.Logging": "1.0.1",
          "Microsoft.Extensions.Logging.Console": "1.0.0",
          "Microsoft.Extensions.Logging.Debug": "1.0.0",
          "Microsoft.Extensions.Options.ConfigurationExtensions": "1.0.0",
          "Microsoft.VisualStudio.Web.BrowserLink.Loader": "14.0.0",
          "Microsoft.EntityFrameworkCore.Tools": "1.0.0-preview4-final",
db607025   Administrator   add pagination
27
          "System.Reflection.TypeExtensions": "4.3.0-preview1-24530-04",
32912d0b   Administrator   first commit
28
29
30
31
32
33
34
35
36
37
38
          "Microsoft.VisualStudio.Web.CodeGeneration.Tools": {
              "version": "1.0.0-preview2-final",
              "type": "build"
          },
          "Microsoft.VisualStudio.Web.CodeGenerators.Mvc": {
              "version": "1.0.0-preview2-final",
              "type": "build"
          },
          "Npgsql.EntityFrameworkCore.PostgreSQL": "1.0.2",
          "Npgsql.EntityFrameworkCore.PostgreSQL.Design": "1.0.2",
          "MapsDb": "1.0.0-*",
4f948d42   Yarik   Mapper
39
          "MapsModels": "1.0.0-*",
a036a6c0   Yarik   Console
40
41
          "AutoMapper": "5.2.0",
          "System.Xml.XmlDocument": "*"
32912d0b   Administrator   first commit
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
      },
  
      "tools": {
          "BundlerMinifier.Core": "2.0.238",
          "Microsoft.EntityFrameworkCore.Tools": {
              "version": "1.0.0-preview2-final",
              "imports": "portable-net45+win8+dnxcore50"
          },
          "Microsoft.AspNetCore.Razor.Tools": "1.0.0-preview4-final",
          "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-preview2-final",
          "Microsoft.VisualStudio.Web.CodeGeneration.Tools": {
              "version": "1.0.0-preview2-final",
              "imports": [
                  "portable-net45+win8"
              ]
          }
      },
  
      "frameworks": {
          "netcoreapp1.0": {
              "imports": [
                  "dotnet5.6",
                  "portable-net45+win8"
              ]
          }
      },
  
      "buildOptions": {
          "emitEntryPoint": true,
          "preserveCompilationContext": true,
          "debugType": "portable"
      },
  
      "runtimeOptions": {
          "configProperties": {
              "System.GC.Server": true
          }
      },
  
      "publishOptions": {
          "include": [
              "wwwroot",
              "**/*.cshtml",
              "appsettings.json",
              "web.config"
          ]
      },
  
      "scripts": {
          "prepublish": ["bower install", "dotnet bundle"],
          "postpublish": ["dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%"]
      }
  }