project.json 1.4 KB

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