project.json 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  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. "tags": [ "Rx", "Reactive", "Extensions", "Observable", "LINQ", "Events" ],
  8. "iconUrl": "http://go.microsoft.com/fwlink/?LinkId=261274",
  9. "projectUrl": "http://go.microsoft.com/fwlink/?LinkId=261273",
  10. "licenseUrl": "http://go.microsoft.com/fwlink/?LinkID=261272",
  11. "requireLicenseAcceptance": true,
  12. "compilationOptions": {
  13. "keyFile": "../35MSSharedLib1024.snk",
  14. "publicSign": true,
  15. "define": [ "SIGNED" ]
  16. },
  17. "configurations": {
  18. "ReleaseDelaySigned": {
  19. "compilationOptions": {
  20. "publicSign": false,
  21. "delaySign": true,
  22. "define": [ "RELEASE", "TRACE" ],
  23. "optimize": true
  24. }
  25. }
  26. },
  27. "exclude": [
  28. "*/**/ImmutableList.cs",
  29. "Reactive/Observer.Extensions.cs",
  30. "Reactive/Internal/Observers.cs",
  31. "Reactive/Internal/Producer.cs"
  32. ],
  33. "dependencies": {
  34. "System.Reactive.Core": { "target": "project" }
  35. },
  36. "frameworks": {
  37. "net40": {
  38. "compilationOptions": {
  39. "define": [
  40. "NO_TASK_DELAY",
  41. "HAS_APTCA",
  42. "HAS_WINFORMS",
  43. "USE_TIMER_SELF_ROOT",
  44. "NO_WEAKREFOFT",
  45. "DESKTOPCLR",
  46. "DESKTOPCLR40"
  47. ]
  48. }
  49. },
  50. "net45": {
  51. "compilationOptions": {
  52. "define": [
  53. "NO_EVENTARGS_CONSTRAINT",
  54. "HAS_EDI",
  55. "HAS_WINRT",
  56. "HAS_PROGRESS",
  57. "PREFER_ASYNC",
  58. "HAS_AWAIT",
  59. "HAS_APTCA",
  60. "HAS_DISPATCHER_PRIORITY",
  61. "HAS_WINFORMS",
  62. "USE_TIMER_SELF_ROOT",
  63. "DESKTOPCLR",
  64. "DESKTOPCLR45"
  65. ]
  66. }
  67. },
  68. "net46": {
  69. "compilationOptions": {
  70. "define": [
  71. "NO_EVENTARGS_CONSTRAINT",
  72. "HAS_EDI",
  73. "HAS_WINRT",
  74. "HAS_PROGRESS",
  75. "PREFER_ASYNC",
  76. "HAS_AWAIT",
  77. "HAS_APTCA",
  78. "HAS_DISPATCHER_PRIORITY",
  79. "HAS_TPL46",
  80. "HAS_WINFORMS",
  81. "USE_TIMER_SELF_ROOT",
  82. "DESKTOPCLR",
  83. "DESKTOPCLR46"
  84. ]
  85. }
  86. },
  87. "netstandard1.0": {
  88. "compilationOptions": {
  89. "define": [
  90. "NO_EVENTARGS_CONSTRAINT",
  91. "HAS_EDI",
  92. "HAS_WINRT",
  93. "HAS_PROGRESS",
  94. "PREFER_ASYNC",
  95. "HAS_AWAIT",
  96. "HAS_APTCA",
  97. "NO_REMOTING",
  98. "NO_SERIALIZABLE",
  99. "NO_THREAD",
  100. "CRIPPLED_REFLECTION",
  101. "NO_CDS_COLLECTIONS",
  102. "USE_TIMER_SELF_ROOT",
  103. "PLIB"
  104. ]
  105. },
  106. "imports": [ "dotnet5.1" ],
  107. "dependencies": {
  108. "System.Runtime.InteropServices.WindowsRuntime": "4.0.1-rc2-23911",
  109. "System.Runtime": "4.1.0-rc2-23911",
  110. "System.Runtime.Extensions": "4.1.0-rc2-23911"
  111. }
  112. },
  113. "netstandard1.3": {
  114. "compilationOptions": {
  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. "imports": [ "dotnet5.4" ],
  133. "dependencies": {
  134. "System.Collections.Concurrent": "4.0.12-rc2-23911",
  135. "System.Reflection": "4.1.0-rc2-23911",
  136. "System.Runtime.InteropServices.WindowsRuntime": "4.0.1-rc2-23911"
  137. }
  138. },
  139. "sl5": {
  140. "compilationOptions": {
  141. "define": [
  142. "NO_RXINTERFACES",
  143. "USE_SL_DISPATCHER",
  144. "NO_SERIALIZABLE",
  145. "NO_REMOTING",
  146. "NO_SEMAPHORE",
  147. "NO_STOPWATCH",
  148. "NO_CDS",
  149. "NO_TASK_DELAY",
  150. "NO_WEAKREFOFT",
  151. "NO_SORTEDDICTIONARY",
  152. "SILVERLIGHT",
  153. "SILVERLIGHT5"
  154. ]
  155. },
  156. "dependencies": {
  157. }
  158. }
  159. }
  160. }