project.json 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  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. "packOptions": {
  8. "tags": ["Rx", "Reactive", "Extensions", "Observable", "LINQ", "Events"],
  9. "iconUrl": "http://go.microsoft.com/fwlink/?LinkId=261274",
  10. "projectUrl": "http://go.microsoft.com/fwlink/?LinkId=261273",
  11. "licenseUrl": "http://go.microsoft.com/fwlink/?LinkID=261272",
  12. "requireLicenseAcceptance": true
  13. },
  14. "buildOptions": {
  15. "keyFile": "../ReactiveX.snk",
  16. "define": [ "SIGNED" ],
  17. "nowarn": [ "CS1591" ],
  18. "xmlDoc": true,
  19. "embed": {
  20. "includeFiles": "Properties/System.Reactive.Core.rd.xml"
  21. }
  22. },
  23. "dependencies": {
  24. "System.Reactive.Interfaces": { "target": "project" }
  25. },
  26. "frameworks": {
  27. "net40": {
  28. "buildOptions": {
  29. "define": [
  30. "NO_TASK_DELAY",
  31. "HAS_APTCA",
  32. "HAS_WINFORMS",
  33. "USE_TIMER_SELF_ROOT",
  34. "NO_WEAKREFOFT",
  35. "DESKTOPCLR",
  36. "DESKTOPCLR40"
  37. ]
  38. }
  39. },
  40. "net45": {
  41. "buildOptions": {
  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. "HAS_DISPATCHER_PRIORITY",
  51. "HAS_WINFORMS",
  52. "USE_TIMER_SELF_ROOT",
  53. "DESKTOPCLR",
  54. "DESKTOPCLR45"
  55. ]
  56. }
  57. },
  58. "net46": {
  59. "buildOptions": {
  60. "define": [
  61. "NO_EVENTARGS_CONSTRAINT",
  62. "HAS_EDI",
  63. "HAS_WINRT",
  64. "HAS_PROGRESS",
  65. "PREFER_ASYNC",
  66. "HAS_AWAIT",
  67. "HAS_APTCA",
  68. "HAS_DISPATCHER_PRIORITY",
  69. "HAS_TPL46",
  70. "HAS_WINFORMS",
  71. "USE_TIMER_SELF_ROOT",
  72. "DESKTOPCLR",
  73. "DESKTOPCLR46"
  74. ]
  75. }
  76. },
  77. "netstandard1.0": {
  78. "buildOptions": {
  79. "define": [
  80. "NO_EVENTARGS_CONSTRAINT",
  81. "HAS_EDI",
  82. "HAS_WINRT",
  83. "HAS_PROGRESS",
  84. "PREFER_ASYNC",
  85. "HAS_AWAIT",
  86. "HAS_APTCA",
  87. "NO_REMOTING",
  88. "NO_SERIALIZABLE",
  89. "NO_THREAD",
  90. "CRIPPLED_REFLECTION",
  91. "NO_CDS_COLLECTIONS",
  92. "USE_TIMER_SELF_ROOT",
  93. "PLIB"
  94. ]
  95. },
  96. "dependencies": {
  97. "System.ComponentModel": "4.0.1-rc2-24027",
  98. "System.Diagnostics.Contracts": "4.0.1-rc2-24027",
  99. "System.Dynamic.Runtime": "4.0.11-rc2-24027"
  100. }
  101. },
  102. "netstandard1.3": {
  103. "buildOptions": {
  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. "dependencies": {
  122. "System.ComponentModel": "4.0.1-rc2-24027",
  123. "System.Diagnostics.Contracts": "4.0.1-rc2-24027",
  124. "System.Dynamic.Runtime": "4.0.11-rc2-24027"
  125. }
  126. },
  127. "netcoreapp1.0": {
  128. "buildOptions": {
  129. "define": [
  130. "NO_EVENTARGS_CONSTRAINT",
  131. "HAS_EDI",
  132. "HAS_WINRT",
  133. "HAS_PROGRESS",
  134. "HAS_TPL46",
  135. "PREFER_ASYNC",
  136. "HAS_AWAIT",
  137. "HAS_APTCA",
  138. "NO_REMOTING",
  139. "NO_SERIALIZABLE",
  140. "CRIPPLED_REFLECTION",
  141. "PLIB",
  142. "USE_TIMER_SELF_ROOT"
  143. ]
  144. },
  145. "dependencies": {
  146. "System.ComponentModel": "4.0.1-rc2-24027",
  147. "System.Diagnostics.Contracts": "4.0.1-rc2-24027",
  148. "System.Dynamic.Runtime": "4.0.11-rc2-24027",
  149. "System.Threading.Thread": "4.0.0-rc2-24027",
  150. "System.Threading.ThreadPool": "4.0.10-rc2-24027"
  151. }
  152. }
  153. }
  154. }