project.json 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  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. "compilationOptions": {
  13. "keyFile": "../35MSSharedLib1024.snk",
  14. "publicSign": true,
  15. "define": [ "SIGNED" ]
  16. },
  17. "dependencies": {
  18. "System.Reactive.Interfaces": { "target": "project" }
  19. },
  20. "frameworks": {
  21. "net40": {
  22. "compilationOptions": {
  23. "define": [
  24. "NO_TASK_DELAY",
  25. "HAS_APTCA",
  26. "HAS_WINFORMS",
  27. "USE_TIMER_SELF_ROOT",
  28. "NO_WEAKREFOFT",
  29. "DESKTOPCLR",
  30. "DESKTOPCLR40"
  31. ]
  32. }
  33. },
  34. "net45": {
  35. "compilationOptions": {
  36. "define": [
  37. "NO_EVENTARGS_CONSTRAINT",
  38. "HAS_EDI",
  39. "HAS_WINRT",
  40. "HAS_PROGRESS",
  41. "PREFER_ASYNC",
  42. "HAS_AWAIT",
  43. "HAS_APTCA",
  44. "HAS_DISPATCHER_PRIORITY",
  45. "HAS_WINFORMS",
  46. "USE_TIMER_SELF_ROOT",
  47. "DESKTOPCLR",
  48. "DESKTOPCLR45"
  49. ]
  50. }
  51. },
  52. "net46": {
  53. "compilationOptions": {
  54. "define": [
  55. "NO_EVENTARGS_CONSTRAINT",
  56. "HAS_EDI",
  57. "HAS_WINRT",
  58. "HAS_PROGRESS",
  59. "PREFER_ASYNC",
  60. "HAS_AWAIT",
  61. "HAS_APTCA",
  62. "HAS_DISPATCHER_PRIORITY",
  63. "HAS_TPL46",
  64. "HAS_WINFORMS",
  65. "USE_TIMER_SELF_ROOT",
  66. "DESKTOPCLR",
  67. "DESKTOPCLR46"
  68. ]
  69. }
  70. },
  71. "netstandard1.0": {
  72. "compilationOptions": {
  73. "define": [
  74. "NO_EVENTARGS_CONSTRAINT",
  75. "HAS_EDI",
  76. "HAS_WINRT",
  77. "HAS_PROGRESS",
  78. "PREFER_ASYNC",
  79. "HAS_AWAIT",
  80. "HAS_APTCA",
  81. "NO_REMOTING",
  82. "NO_SERIALIZABLE",
  83. "NO_THREAD",
  84. "CRIPPLED_REFLECTION",
  85. "NO_CDS_COLLECTIONS",
  86. "USE_TIMER_SELF_ROOT",
  87. "PLIB"
  88. ]
  89. },
  90. "imports": [ "dotnet5.1" ],
  91. "dependencies": {
  92. "System.ComponentModel": "4.0.1-rc2-23911",
  93. "System.Diagnostics.Contracts": "4.0.1-rc2-23911",
  94. "System.Diagnostics.Debug": "4.0.11-rc2-23911",
  95. "System.Dynamic.Runtime": "4.0.11-rc2-23911",
  96. "System.Linq": "4.0.1-rc2-23911",
  97. "System.Runtime": "4.1.0-rc2-23911",
  98. "System.Runtime.Extensions": "4.1.0-rc2-23911",
  99. "System.Threading": "4.0.11-rc2-23911"
  100. }
  101. },
  102. "netstandard1.3": {
  103. "compilationOptions": {
  104. "define": [
  105. "NO_EVENTARGS_CONSTRAINT",
  106. "HAS_EDI",
  107. "HAS_WINRT",
  108. "HAS_PROGRESS",
  109. "HAS_TPL46",
  110. "PREFER_ASYNC",
  111. "HAS_AWAIT",
  112. "HAS_APTCA",
  113. "NO_REMOTING",
  114. "NO_SERIALIZABLE",
  115. "NO_THREAD",
  116. "CRIPPLED_REFLECTION",
  117. "PLIB",
  118. "USE_TIMER_SELF_ROOT"
  119. ]
  120. },
  121. "imports": [ "dotnet5.4" ],
  122. "dependencies": {
  123. "System.Diagnostics.Contracts": "4.0.1-rc2-23911",
  124. "System.Diagnostics.Debug": "4.0.11-rc2-23911",
  125. "System.Collections.Concurrent": "4.0.12-rc2-23911",
  126. "System.ComponentModel": "4.0.1-rc2-23911",
  127. "System.Linq": "4.0.1-rc2-23911",
  128. "System.Runtime.Extensions": "4.1.0-rc2-23911",
  129. "System.Threading": "4.0.11-rc2-23911",
  130. "System.Threading.Timer": "4.0.1-rc2-23911"
  131. }
  132. },
  133. "sl5": {
  134. "compilationOptions": {
  135. "define": [
  136. "NO_RXINTERFACES",
  137. "USE_SL_DISPATCHER",
  138. "NO_SERIALIZABLE",
  139. "NO_REMOTING",
  140. "NO_SEMAPHORE",
  141. "NO_STOPWATCH",
  142. "NO_CDS",
  143. "NO_TASK_DELAY",
  144. "NO_WEAKREFOFT",
  145. "NO_SORTEDDICTIONARY",
  146. "SILVERLIGHT",
  147. "SILVERLIGHT5"
  148. ]
  149. },
  150. "dependencies": {
  151. }
  152. }
  153. }
  154. }