1
0

project.json 3.9 KB

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