project.json 3.8 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": "../35MSSharedLib1024.snk",
  16. "publicSign": true,
  17. "define": ["SIGNED"]
  18. },
  19. "configurations": {
  20. "ReleaseDelaySigned": {
  21. "buildOptions": {
  22. "publicSign": false,
  23. "delaySign": true,
  24. "define": ["RELEASE", "TRACE"],
  25. "optimize": true
  26. }
  27. }
  28. },
  29. "dependencies": {
  30. "System.Reactive.Linq": { "target": "project" }
  31. },
  32. "frameworks": {
  33. "net40": {
  34. "buildOptions": {
  35. "define": [
  36. "NO_TASK_DELAY",
  37. "HAS_APTCA",
  38. "HAS_WINFORMS",
  39. "USE_TIMER_SELF_ROOT",
  40. "NO_WEAKREFOFT",
  41. "DESKTOPCLR",
  42. "DESKTOPCLR40"
  43. ]
  44. }
  45. },
  46. "net45": {
  47. "buildOptions": {
  48. "define": [
  49. "NO_EVENTARGS_CONSTRAINT",
  50. "HAS_EDI",
  51. "HAS_WINRT",
  52. "HAS_PROGRESS",
  53. "PREFER_ASYNC",
  54. "HAS_AWAIT",
  55. "HAS_APTCA",
  56. "HAS_DISPATCHER_PRIORITY",
  57. "HAS_WINFORMS",
  58. "USE_TIMER_SELF_ROOT",
  59. "DESKTOPCLR",
  60. "DESKTOPCLR45"
  61. ]
  62. },
  63. "dependencies": {
  64. }
  65. },
  66. "net46": {
  67. "buildOptions": {
  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. "HAS_DISPATCHER_PRIORITY",
  77. "HAS_TPL46",
  78. "HAS_WINFORMS",
  79. "USE_TIMER_SELF_ROOT",
  80. "DESKTOPCLR",
  81. "DESKTOPCLR46"
  82. ]
  83. }
  84. },
  85. "netstandard1.0": {
  86. "buildOptions": {
  87. "define": [
  88. "NO_EVENTARGS_CONSTRAINT",
  89. "HAS_EDI",
  90. "HAS_WINRT",
  91. "HAS_PROGRESS",
  92. "PREFER_ASYNC",
  93. "HAS_AWAIT",
  94. "HAS_APTCA",
  95. "NO_REMOTING",
  96. "NO_SERIALIZABLE",
  97. "NO_THREAD",
  98. "CRIPPLED_REFLECTION",
  99. "NO_CDS_COLLECTIONS",
  100. "USE_TIMER_SELF_ROOT",
  101. "PLIB"
  102. ]
  103. },
  104. "dependencies": {
  105. "System.Linq.Queryable": "4.0.1-rc2-24027",
  106. "System.Reflection.Extensions": "4.0.1-rc2-24027"
  107. }
  108. },
  109. "netstandard1.3": {
  110. "buildOptions": {
  111. "define": [
  112. "NO_EVENTARGS_CONSTRAINT",
  113. "HAS_EDI",
  114. "HAS_WINRT",
  115. "HAS_PROGRESS",
  116. "PREFER_ASYNC",
  117. "HAS_AWAIT",
  118. "HAS_APTCA",
  119. "HAS_TPL46",
  120. "NO_REMOTING",
  121. "NO_SERIALIZABLE",
  122. "NO_THREAD",
  123. "CRIPPLED_REFLECTION",
  124. "PLIB",
  125. "USE_TIMER_SELF_ROOT"
  126. ]
  127. },
  128. "dependencies": {
  129. "System.Linq.Queryable": "4.0.1-rc2-24027",
  130. "System.Reflection.Extensions": "4.0.1-rc2-24027"
  131. }
  132. },
  133. "sl5": {
  134. "buildOptions": {
  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. }