project.json 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  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. "exclude": [
  13. "*/**/ImmutableList.cs",
  14. "Reactive/Observer.Extensions.cs",
  15. "Reactive/Internal/Observers.cs",
  16. "Reactive/Internal/Producer.cs"
  17. ],
  18. "dependencies": {
  19. "System.Reactive.Core": { "target": "project" }
  20. },
  21. "frameworks": {
  22. "net40": {
  23. "compilationOptions": {
  24. "define": [
  25. "NO_TASK_DELAY",
  26. "HAS_APTCA",
  27. "HAS_WINFORMS",
  28. "USE_TIMER_SELF_ROOT",
  29. "NO_WEAKREFOFT",
  30. "DESKTOPCLR",
  31. "DESKTOPCLR40"
  32. ]
  33. }
  34. },
  35. "net45": {
  36. "compilationOptions": {
  37. "define": [
  38. "NO_EVENTARGS_CONSTRAINT",
  39. "HAS_EDI",
  40. "HAS_WINRT",
  41. "HAS_PROGRESS",
  42. "PREFER_ASYNC",
  43. "HAS_AWAIT",
  44. "HAS_APTCA",
  45. "HAS_DISPATCHER_PRIORITY",
  46. "HAS_WINFORMS",
  47. "USE_TIMER_SELF_ROOT",
  48. "DESKTOPCLR",
  49. "DESKTOPCLR45"
  50. ]
  51. }
  52. },
  53. "net46": {
  54. "compilationOptions": {
  55. "define": [
  56. "NO_EVENTARGS_CONSTRAINT",
  57. "HAS_EDI",
  58. "HAS_WINRT",
  59. "HAS_PROGRESS",
  60. "PREFER_ASYNC",
  61. "HAS_AWAIT",
  62. "HAS_APTCA",
  63. "HAS_DISPATCHER_PRIORITY",
  64. "HAS_TPL46",
  65. "HAS_WINFORMS",
  66. "USE_TIMER_SELF_ROOT",
  67. "DESKTOPCLR",
  68. "DESKTOPCLR46"
  69. ]
  70. }
  71. },
  72. "netstandard1.0": {
  73. "compilationOptions": {
  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. "NO_REMOTING",
  83. "NO_SERIALIZABLE",
  84. "NO_THREAD",
  85. "CRIPPLED_REFLECTION",
  86. "NO_CDS_COLLECTIONS",
  87. "USE_TIMER_SELF_ROOT",
  88. "PLIB"
  89. ]
  90. },
  91. "imports": [ "dotnet5.1" ],
  92. "dependencies": {
  93. "System.Runtime.InteropServices.WindowsRuntime": "4.0.1-rc2-23911",
  94. "System.Runtime": "4.1.0-rc2-23911",
  95. "System.Runtime.Extensions": "4.1.0-rc2-23911"
  96. }
  97. },
  98. "netstandard1.3": {
  99. "compilationOptions": {
  100. "define": [
  101. "NO_EVENTARGS_CONSTRAINT",
  102. "HAS_EDI",
  103. "HAS_WINRT",
  104. "HAS_PROGRESS",
  105. "HAS_TPL46",
  106. "PREFER_ASYNC",
  107. "HAS_AWAIT",
  108. "HAS_APTCA",
  109. "NO_REMOTING",
  110. "NO_SERIALIZABLE",
  111. "NO_THREAD",
  112. "CRIPPLED_REFLECTION",
  113. "PLIB",
  114. "USE_TIMER_SELF_ROOT"
  115. ]
  116. },
  117. "imports": [ "dotnet5.4" ],
  118. "dependencies": {
  119. "System.Collections.Concurrent": "4.0.12-rc2-23911",
  120. "System.Reflection": "4.1.0-rc2-23911",
  121. "System.Runtime.InteropServices.WindowsRuntime": "4.0.1-rc2-23911"
  122. }
  123. },
  124. "sl5": {
  125. "compilationOptions": {
  126. "define": [
  127. "NO_RXINTERFACES",
  128. "USE_SL_DISPATCHER",
  129. "NO_SERIALIZABLE",
  130. "NO_REMOTING",
  131. "NO_SEMAPHORE",
  132. "NO_STOPWATCH",
  133. "NO_CDS",
  134. "NO_TASK_DELAY",
  135. "NO_WEAKREFOFT",
  136. "NO_SORTEDDICTIONARY",
  137. "SILVERLIGHT",
  138. "SILVERLIGHT5"
  139. ]
  140. },
  141. "dependencies": {
  142. }
  143. }
  144. }
  145. }