project.json 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. {
  2. "version": "3.0.0-*",
  3. "title": "Reactive Extensions - Interfaces Library",
  4. "description": "Reactive Extensions Interfaces Library containing essential interfaces.",
  5. "authors": [ "Microsoft" ],
  6. "copyright": "Copyright (C) Microsoft Corporation",
  7. "tags": [ "Rx", "Reactive", "Extensions", "Observable", "LINQ", "Events" ],
  8. "iconUrl": "http://go.microsoft.com/fwlink/?LinkId=261274",
  9. "projectUrl": "http://go.microsoft.com/fwlink/?LinkId=261273",
  10. "licenseUrl": "http://go.microsoft.com/fwlink/?LinkID=261272",
  11. "requireLicenseAcceptance": true,
  12. "frameworks": {
  13. "net40": {
  14. "compilationOptions": {
  15. "define": [
  16. "NO_TASK_DELAY",
  17. "HAS_APTCA",
  18. "HAS_WINFORMS",
  19. "USE_TIMER_SELF_ROOT",
  20. "NO_WEAKREFOFT"
  21. ]
  22. }
  23. },
  24. "net45": {
  25. "compilationOptions": {
  26. "define": [
  27. "NO_EVENTARGS_CONSTRAINT",
  28. "HAS_EDI",
  29. "HAS_WINRT",
  30. "HAS_PROGRESS",
  31. "PREFER_ASYNC",
  32. "HAS_AWAIT",
  33. "HAS_APTCA",
  34. "HAS_DISPATCHER_PRIORITY",
  35. "HAS_WINFORMS",
  36. "USE_TIMER_SELF_ROOT"
  37. ]
  38. }
  39. },
  40. "dotnet5.1": {
  41. "compilationOptions": {
  42. "define": [
  43. "NO_EVENTARGS_CONSTRAINT",
  44. "HAS_EDI",
  45. "HAS_WINRT",
  46. "HAS_PROGRESS",
  47. "PREFER_ASYNC",
  48. "HAS_AWAIT",
  49. "HAS_APTCA",
  50. "NO_REMOTING",
  51. "NO_SERIALIZABLE",
  52. "NO_THREAD",
  53. "CRIPPLED_REFLECTION",
  54. "PLIB",
  55. "USE_TIMER_SELF_ROOT"
  56. ]
  57. },
  58. "dependencies": {
  59. "System.Diagnostics.Tools": "4.0.0",
  60. "System.Linq": "4.0.0",
  61. "System.Linq.Expressions": "4.0.10",
  62. "System.Resources.ResourceManager": "4.0.0",
  63. "System.Threading": "4.0.10"
  64. }
  65. },
  66. "dotnet5.2": {
  67. "compilationOptions": {
  68. "define": [
  69. "NO_EVENTARGS_CONSTRAINT",
  70. "HAS_EDI",
  71. "HAS_WINRT",
  72. "HAS_PROGRESS",
  73. "PREFER_ASYNC",
  74. "HAS_AWAIT",
  75. "HAS_APTCA",
  76. "NO_REMOTING",
  77. "NO_SERIALIZABLE",
  78. "NO_THREAD",
  79. "CRIPPLED_REFLECTION",
  80. "PLIB",
  81. "USE_TIMER_SELF_ROOT"
  82. ]
  83. },
  84. "dependencies": {
  85. "System.Diagnostics.Tools": "4.0.1-beta-23516",
  86. "System.Linq": "4.0.1-beta-23516",
  87. "System.Linq.Expressions": "4.0.11-beta-23516",
  88. "System.Resources.ResourceManager": "4.0.1-beta-23516",
  89. "System.Threading": "4.0.11-beta-23516"
  90. }
  91. }
  92. }
  93. }