project.json 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. {
  2. "version": "3.0.0-*",
  3. "title": "Reactive Extensions - Core Library",
  4. "description": "Reactive Extensions Core Library containing base classes and scheduler infrastructure.",
  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. "dependencies": {
  13. "System.Reactive.Interfaces": { "target": "project" }
  14. },
  15. "frameworks": {
  16. "net40": {
  17. "compilationOptions": {
  18. "define": [
  19. "NO_TASK_DELAY",
  20. "HAS_APTCA",
  21. "HAS_WINFORMS",
  22. "USE_TIMER_SELF_ROOT",
  23. "NO_WEAKREFOFT"
  24. ]
  25. }
  26. },
  27. "net45": {
  28. "compilationOptions": {
  29. "define": [
  30. "NO_EVENTARGS_CONSTRAINT",
  31. "HAS_EDI",
  32. "HAS_WINRT",
  33. "HAS_PROGRESS",
  34. "PREFER_ASYNC",
  35. "HAS_AWAIT",
  36. "HAS_APTCA",
  37. "HAS_DISPATCHER_PRIORITY",
  38. "HAS_WINFORMS",
  39. "USE_TIMER_SELF_ROOT"
  40. ]
  41. }
  42. },
  43. "dotnet5.1": {
  44. "compilationOptions": {
  45. "define": [
  46. "NO_EVENTARGS_CONSTRAINT",
  47. "HAS_EDI",
  48. "HAS_WINRT",
  49. "HAS_PROGRESS",
  50. "PREFER_ASYNC",
  51. "HAS_AWAIT",
  52. "HAS_APTCA",
  53. "NO_REMOTING",
  54. "NO_SERIALIZABLE",
  55. "NO_THREAD",
  56. "NO_WEAKTABLE",
  57. "CRIPPLED_REFLECTION",
  58. "PLIB",
  59. "USE_TIMER_SELF_ROOT"
  60. ]
  61. },
  62. "dependencies": {
  63. "System.Linq": "4.0.0",
  64. "System.Collections.Concurrent": "4.0.0",
  65. "System.ComponentModel": "4.0.0",
  66. "System.Threading": "4.0.0",
  67. "System.Threading.Timer": "4.0.0",
  68. "System.Runtime": "4.0.0",
  69. "System.Runtime.Extensions": "4.0.0"
  70. }
  71. },
  72. "dotnet5.4": {
  73. "compilationOptions": {
  74. "define": [
  75. "NO_EVENTARGS_CONSTRAINT",
  76. "HAS_EDI",
  77. "HAS_WINRT",
  78. "HAS_PROGRESS",
  79. "PREFER_ASYNC",
  80. "HAS_AWAIT",
  81. "HAS_APTCA",
  82. "NO_REMOTING",
  83. "NO_SERIALIZABLE",
  84. "NO_THREAD",
  85. "CRIPPLED_REFLECTION",
  86. "PLIB",
  87. "USE_TIMER_SELF_ROOT"
  88. ]
  89. },
  90. "dependencies": {
  91. "System.Collections.Concurrent": "4.0.11-beta-23516",
  92. "System.ComponentModel": "4.0.1-beta-23516",
  93. "System.Linq": "4.0.1-beta-23516",
  94. "System.Threading": "4.0.11-beta-23516",
  95. "System.Threading.Thread": "4.0.0-beta-23516",
  96. "System.Threading.ThreadPool": "4.0.10-beta-23516",
  97. "System.Threading.Timer": "4.0.1-beta-23516"
  98. }
  99. }
  100. }
  101. }