1
0

project.json 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. {
  2. "version": "3.0.0-*",
  3. "title": "Reactive Extensions - Query Library",
  4. "description": "Reactive Extensions Query Library used to express complex event processing queries over observable sequences.",
  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. "compile": {
  19. "exclude": [
  20. "*/**/ImmutableList.cs",
  21. "Reactive/Observer.Extensions.cs",
  22. "Reactive/Internal/Observers.cs",
  23. "Reactive/Internal/Producer.cs"
  24. ]
  25. }
  26. },
  27. "configurations": {
  28. "ReleaseDelaySigned": {
  29. "buildOptions": {
  30. "publicSign": false,
  31. "delaySign": true,
  32. "define": ["RELEASE", "TRACE"],
  33. "optimize": true
  34. }
  35. }
  36. },
  37. "dependencies": {
  38. "System.Reactive.Core": { "target": "project" }
  39. },
  40. "frameworks": {
  41. "net40": {
  42. "buildOptions": {
  43. "define": [
  44. "NO_TASK_DELAY",
  45. "HAS_APTCA",
  46. "HAS_WINFORMS",
  47. "USE_TIMER_SELF_ROOT",
  48. "NO_WEAKREFOFT",
  49. "DESKTOPCLR",
  50. "DESKTOPCLR40"
  51. ]
  52. }
  53. },
  54. "net45": {
  55. "buildOptions": {
  56. "define": [
  57. "NO_EVENTARGS_CONSTRAINT",
  58. "HAS_EDI",
  59. "HAS_WINRT",
  60. "HAS_PROGRESS",
  61. "PREFER_ASYNC",
  62. "HAS_AWAIT",
  63. "HAS_APTCA",
  64. "HAS_DISPATCHER_PRIORITY",
  65. "HAS_WINFORMS",
  66. "USE_TIMER_SELF_ROOT",
  67. "DESKTOPCLR",
  68. "DESKTOPCLR45"
  69. ]
  70. }
  71. },
  72. "net46": {
  73. "buildOptions": {
  74. "define": [
  75. "NO_EVENTARGS_CONSTRAINT",
  76. "HAS_EDI",
  77. "HAS_WINRT",
  78. "HAS_PROGRESS",
  79. "PREFER_ASYNC",
  80. "HAS_AWAIT",
  81. "HAS_APTCA",
  82. "HAS_DISPATCHER_PRIORITY",
  83. "HAS_TPL46",
  84. "HAS_WINFORMS",
  85. "USE_TIMER_SELF_ROOT",
  86. "DESKTOPCLR",
  87. "DESKTOPCLR46"
  88. ]
  89. }
  90. },
  91. "netstandard1.0": {
  92. "buildOptions": {
  93. "define": [
  94. "NO_EVENTARGS_CONSTRAINT",
  95. "HAS_EDI",
  96. "HAS_WINRT",
  97. "HAS_PROGRESS",
  98. "PREFER_ASYNC",
  99. "HAS_AWAIT",
  100. "HAS_APTCA",
  101. "NO_REMOTING",
  102. "NO_SERIALIZABLE",
  103. "NO_THREAD",
  104. "CRIPPLED_REFLECTION",
  105. "NO_CDS_COLLECTIONS",
  106. "USE_TIMER_SELF_ROOT",
  107. "PLIB"
  108. ]
  109. },
  110. "dependencies": {
  111. "System.Runtime.InteropServices.WindowsRuntime": "4.0.1-rc2-24027"
  112. }
  113. },
  114. "netstandard1.3": {
  115. "buildOptions": {
  116. "define": [
  117. "NO_EVENTARGS_CONSTRAINT",
  118. "HAS_EDI",
  119. "HAS_WINRT",
  120. "HAS_PROGRESS",
  121. "HAS_TPL46",
  122. "PREFER_ASYNC",
  123. "HAS_AWAIT",
  124. "HAS_APTCA",
  125. "NO_REMOTING",
  126. "NO_SERIALIZABLE",
  127. "NO_THREAD",
  128. "CRIPPLED_REFLECTION",
  129. "PLIB",
  130. "USE_TIMER_SELF_ROOT"
  131. ]
  132. },
  133. "dependencies": {
  134. "System.Runtime.InteropServices.WindowsRuntime": "4.0.1-rc2-24027"
  135. }
  136. },
  137. "sl5": {
  138. "buildOptions": {
  139. "define": [
  140. "NO_RXINTERFACES",
  141. "USE_SL_DISPATCHER",
  142. "NO_SERIALIZABLE",
  143. "NO_REMOTING",
  144. "NO_SEMAPHORE",
  145. "NO_STOPWATCH",
  146. "NO_CDS",
  147. "NO_TASK_DELAY",
  148. "NO_WEAKREFOFT",
  149. "NO_SORTEDDICTIONARY",
  150. "SILVERLIGHT",
  151. "SILVERLIGHT5"
  152. ]
  153. },
  154. "dependencies": {
  155. }
  156. }
  157. }
  158. }