project.json 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  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": "../35MSSharedLib1024.snk",
  16. "publicSign": true,
  17. "define": [ "SIGNED" ],
  18. "nowarn": [ "CS1591" ],
  19. "xmlDoc": true,
  20. "embed": {
  21. "includeFiles": "Properties/System.Reactive.Core.rd.xml"
  22. }
  23. },
  24. "configurations": {
  25. "ReleaseDelaySigned": {
  26. "buildOptions": {
  27. "publicSign": false,
  28. "delaySign": true,
  29. "define": ["RELEASE", "TRACE"],
  30. "optimize": true
  31. }
  32. }
  33. },
  34. "dependencies": {
  35. "System.Reactive.Interfaces": { "target": "project" }
  36. },
  37. "frameworks": {
  38. "net40": {
  39. "buildOptions": {
  40. "define": [
  41. "NO_TASK_DELAY",
  42. "HAS_APTCA",
  43. "HAS_WINFORMS",
  44. "USE_TIMER_SELF_ROOT",
  45. "NO_WEAKREFOFT",
  46. "DESKTOPCLR",
  47. "DESKTOPCLR40"
  48. ]
  49. }
  50. },
  51. "net45": {
  52. "buildOptions": {
  53. "define": [
  54. "NO_EVENTARGS_CONSTRAINT",
  55. "HAS_EDI",
  56. "HAS_WINRT",
  57. "HAS_PROGRESS",
  58. "PREFER_ASYNC",
  59. "HAS_AWAIT",
  60. "HAS_APTCA",
  61. "HAS_DISPATCHER_PRIORITY",
  62. "HAS_WINFORMS",
  63. "USE_TIMER_SELF_ROOT",
  64. "DESKTOPCLR",
  65. "DESKTOPCLR45"
  66. ]
  67. }
  68. },
  69. "net46": {
  70. "buildOptions": {
  71. "define": [
  72. "NO_EVENTARGS_CONSTRAINT",
  73. "HAS_EDI",
  74. "HAS_WINRT",
  75. "HAS_PROGRESS",
  76. "PREFER_ASYNC",
  77. "HAS_AWAIT",
  78. "HAS_APTCA",
  79. "HAS_DISPATCHER_PRIORITY",
  80. "HAS_TPL46",
  81. "HAS_WINFORMS",
  82. "USE_TIMER_SELF_ROOT",
  83. "DESKTOPCLR",
  84. "DESKTOPCLR46"
  85. ]
  86. }
  87. },
  88. "netstandard1.0": {
  89. "buildOptions": {
  90. "define": [
  91. "NO_EVENTARGS_CONSTRAINT",
  92. "HAS_EDI",
  93. "HAS_WINRT",
  94. "HAS_PROGRESS",
  95. "PREFER_ASYNC",
  96. "HAS_AWAIT",
  97. "HAS_APTCA",
  98. "NO_REMOTING",
  99. "NO_SERIALIZABLE",
  100. "NO_THREAD",
  101. "CRIPPLED_REFLECTION",
  102. "NO_CDS_COLLECTIONS",
  103. "USE_TIMER_SELF_ROOT",
  104. "PLIB"
  105. ]
  106. },
  107. "dependencies": {
  108. "System.ComponentModel": "4.0.1-rc2-24027",
  109. "System.Diagnostics.Contracts": "4.0.1-rc2-24027",
  110. "System.Dynamic.Runtime": "4.0.11-rc2-24027"
  111. }
  112. },
  113. "netstandard1.3": {
  114. "buildOptions": {
  115. "define": [
  116. "NO_EVENTARGS_CONSTRAINT",
  117. "HAS_EDI",
  118. "HAS_WINRT",
  119. "HAS_PROGRESS",
  120. "HAS_TPL46",
  121. "PREFER_ASYNC",
  122. "HAS_AWAIT",
  123. "HAS_APTCA",
  124. "NO_REMOTING",
  125. "NO_SERIALIZABLE",
  126. "NO_THREAD",
  127. "CRIPPLED_REFLECTION",
  128. "PLIB",
  129. "USE_TIMER_SELF_ROOT"
  130. ]
  131. },
  132. "dependencies": {
  133. "System.ComponentModel": "4.0.1-rc2-24027",
  134. "System.Diagnostics.Contracts": "4.0.1-rc2-24027",
  135. "System.Dynamic.Runtime": "4.0.11-rc2-24027"
  136. }
  137. },
  138. "netcoreapp1.0": {
  139. "buildOptions": {
  140. "define": [
  141. "NO_EVENTARGS_CONSTRAINT",
  142. "HAS_EDI",
  143. "HAS_WINRT",
  144. "HAS_PROGRESS",
  145. "HAS_TPL46",
  146. "PREFER_ASYNC",
  147. "HAS_AWAIT",
  148. "HAS_APTCA",
  149. "NO_REMOTING",
  150. "NO_SERIALIZABLE",
  151. "CRIPPLED_REFLECTION",
  152. "PLIB",
  153. "USE_TIMER_SELF_ROOT"
  154. ]
  155. },
  156. "dependencies": {
  157. "System.ComponentModel": "4.0.1-rc2-24027",
  158. "System.Diagnostics.Contracts": "4.0.1-rc2-24027",
  159. "System.Dynamic.Runtime": "4.0.11-rc2-24027",
  160. "System.Threading.Thread": "4.0.0-rc2-24027",
  161. "System.Threading.ThreadPool": "4.0.10-rc2-24027"
  162. }
  163. }
  164. }
  165. }