project.json 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  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. "DESKTOPCLR",
  25. "DESKTOPCLR40"
  26. ]
  27. }
  28. },
  29. "net45": {
  30. "compilationOptions": {
  31. "define": [
  32. "NO_EVENTARGS_CONSTRAINT",
  33. "HAS_EDI",
  34. "HAS_WINRT",
  35. "HAS_PROGRESS",
  36. "PREFER_ASYNC",
  37. "HAS_AWAIT",
  38. "HAS_APTCA",
  39. "HAS_DISPATCHER_PRIORITY",
  40. "HAS_WINFORMS",
  41. "USE_TIMER_SELF_ROOT",
  42. "DESKTOPCLR",
  43. "DESKTOPCLR45"
  44. ]
  45. }
  46. },
  47. "net46": {
  48. "compilationOptions": {
  49. "define": [
  50. "NO_EVENTARGS_CONSTRAINT",
  51. "HAS_EDI",
  52. "HAS_WINRT",
  53. "HAS_PROGRESS",
  54. "PREFER_ASYNC",
  55. "HAS_AWAIT",
  56. "HAS_APTCA",
  57. "HAS_DISPATCHER_PRIORITY",
  58. "HAS_TPL46",
  59. "HAS_WINFORMS",
  60. "USE_TIMER_SELF_ROOT",
  61. "DESKTOPCLR",
  62. "DESKTOPCLR46"
  63. ]
  64. }
  65. },
  66. "netstandard1.0": {
  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. "NO_CDS_COLLECTIONS",
  81. "USE_TIMER_SELF_ROOT",
  82. "PLIB"
  83. ]
  84. },
  85. "imports": [ "dotnet5.1" ],
  86. "dependencies": {
  87. "System.ComponentModel": "4.0.1-rc2-23811",
  88. "System.Diagnostics.Contracts": "4.0.1-rc2-23811",
  89. "System.Diagnostics.Debug": "4.0.11-rc2-23811",
  90. "System.Dynamic.Runtime": "4.0.11-rc2-23811",
  91. "System.Linq": "4.0.1-rc2-23811",
  92. "System.Runtime": "4.1.0-rc2-23811",
  93. "System.Runtime.Extensions": "4.1.0-rc2-23811",
  94. "System.Threading": "4.0.11-rc2-23811"
  95. }
  96. },
  97. "netstandard1.3": {
  98. "compilationOptions": {
  99. "define": [
  100. "NO_EVENTARGS_CONSTRAINT",
  101. "HAS_EDI",
  102. "HAS_WINRT",
  103. "HAS_PROGRESS",
  104. "PREFER_ASYNC",
  105. "HAS_AWAIT",
  106. "HAS_APTCA",
  107. "NO_REMOTING",
  108. "NO_SERIALIZABLE",
  109. "NO_THREAD",
  110. "CRIPPLED_REFLECTION",
  111. "PLIB",
  112. "USE_TIMER_SELF_ROOT"
  113. ]
  114. },
  115. "imports": [ "dotnet5.4" ],
  116. "dependencies": {
  117. "System.Collections.Concurrent": "4.0.12-rc2-23811",
  118. "System.ComponentModel": "4.0.1-rc2-23811",
  119. "System.Linq": "4.0.1-rc2-23811",
  120. "System.Threading": "4.0.11-rc2-23811",
  121. "System.Threading.Thread": "4.0.0-rc2-23811",
  122. "System.Threading.ThreadPool": "4.0.10-rc2-23811",
  123. "System.Threading.Timer": "4.0.1-rc2-23811"
  124. }
  125. },
  126. "sl5": {
  127. "compilationOptions": {
  128. "define": [
  129. "NO_RXINTERFACES",
  130. "USE_SL_DISPATCHER",
  131. "NO_SERIALIZABLE",
  132. "NO_REMOTING",
  133. "NO_SEMAPHORE",
  134. "NO_STOPWATCH",
  135. "NO_CDS",
  136. "NO_TASK_DELAY",
  137. "NO_WEAKREFOFT",
  138. "NO_SORTEDDICTIONARY",
  139. "SILVERLIGHT",
  140. "SILVERLIGHT5"
  141. ]
  142. },
  143. "dependencies": {
  144. }
  145. }
  146. }
  147. }