project.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "version": "1.0.0-*",
  3. "buildOptions": {
  4. "emitEntryPoint": true,
  5. "preserveCompilationContext": true,
  6. "copyToOutput": {
  7. "include": [
  8. "appsettings.json",
  9. "wwwroot",
  10. "Views"
  11. ]
  12. }
  13. },
  14. "dependencies": {
  15. "Dapper": "1.50.0-*",
  16. "Microsoft.EntityFrameworkCore.SqlServer": "1.0.0-*",
  17. "Microsoft.EntityFrameworkCore.Tools": {
  18. "type": "build",
  19. "version": "1.0.0-*"
  20. },
  21. "Microsoft.AspNetCore.Mvc": "1.0.0-*",
  22. "Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*",
  23. "Microsoft.AspNetCore.Server.WebListener": "0.1.0-*",
  24. "Microsoft.AspNetCore.StaticFiles": "1.0.0-*",
  25. "Microsoft.Extensions.Options.ConfigurationExtensions": "1.0.0-*",
  26. "Microsoft.Extensions.Configuration.Json": "1.0.0-*",
  27. "Microsoft.Extensions.Configuration.CommandLine": "1.0.0-*",
  28. "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-*",
  29. "Npgsql": "3.2.0-*",
  30. "Npgsql.EntityFrameworkCore.PostgreSQL": "1.0.2-*"
  31. },
  32. "frameworks": {
  33. "netcoreapp1.0": {
  34. "imports": [ "portable-net451+win8", "dnxcore50" ],
  35. "dependencies": {
  36. "Microsoft.NETCore.App": {
  37. "version": "1.0.0-*",
  38. "type": "platform"
  39. },
  40. "System.Runtime.Serialization.Primitives": "4.1.1-*"
  41. }
  42. },
  43. "net451": { }
  44. },
  45. "tools": {
  46. "Microsoft.EntityFrameworkCore.Tools": {
  47. "version": "1.0.0-*",
  48. "imports": [
  49. "dnxcore50",
  50. "portable-net452+win81"
  51. ]
  52. }
  53. },
  54. "publishOptions": {
  55. "include": [
  56. "appsettings.json",
  57. "wwwroot",
  58. "Views"
  59. ]
  60. },
  61. "runtimeOptions": {
  62. "configProperties": {
  63. "System.GC.Server": true
  64. }
  65. }
  66. }