project.json 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. {
  2. "version": "3.0.0-*",
  3. "title": "Reactive Extensions - Experimental Library",
  4. "description": "Reactive Extensions Experimental Library containing unstable and infrequently used functionality.",
  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.Interfaces": { "target": "project" },
  31. "System.Reactive.Core": { "target": "project" },
  32. "System.Reactive.Linq": { "target": "project" }
  33. },
  34. "frameworks": {
  35. "net40": {
  36. "buildOptions": {
  37. "define": [
  38. "NO_TASK_DELAY",
  39. "HAS_APTCA",
  40. "HAS_WINFORMS",
  41. "USE_TIMER_SELF_ROOT",
  42. "NO_WEAKREFOFT",
  43. "DESKTOPCLR",
  44. "DESKTOPCLR40"
  45. ]
  46. }
  47. },
  48. "net45": {
  49. "buildOptions": {
  50. "define": [
  51. "NO_EVENTARGS_CONSTRAINT",
  52. "HAS_EDI",
  53. "HAS_WINRT",
  54. "HAS_PROGRESS",
  55. "PREFER_ASYNC",
  56. "HAS_AWAIT",
  57. "HAS_APTCA",
  58. "HAS_DISPATCHER_PRIORITY",
  59. "HAS_WINFORMS",
  60. "USE_TIMER_SELF_ROOT",
  61. "DESKTOPCLR",
  62. "DESKTOPCLR45"
  63. ]
  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. }
  106. },
  107. "netstandard1.3": {
  108. "buildOptions": {
  109. "define": [
  110. "NO_EVENTARGS_CONSTRAINT",
  111. "HAS_EDI",
  112. "HAS_WINRT",
  113. "HAS_PROGRESS",
  114. "PREFER_ASYNC",
  115. "HAS_AWAIT",
  116. "HAS_APTCA",
  117. "HAS_TPL46",
  118. "NO_REMOTING",
  119. "NO_SERIALIZABLE",
  120. "NO_THREAD",
  121. "CRIPPLED_REFLECTION",
  122. "PLIB",
  123. "USE_TIMER_SELF_ROOT"
  124. ]
  125. },
  126. "dependencies": {
  127. }
  128. },
  129. "sl5": {
  130. "buildOptions": {
  131. "define": [
  132. "NO_RXINTERFACES",
  133. "USE_SL_DISPATCHER",
  134. "NO_SERIALIZABLE",
  135. "NO_REMOTING",
  136. "NO_SEMAPHORE",
  137. "NO_STOPWATCH",
  138. "NO_CDS",
  139. "NO_TASK_DELAY",
  140. "NO_WEAKREFOFT",
  141. "NO_SORTEDDICTIONARY",
  142. "SILVERLIGHT",
  143. "SILVERLIGHT5"
  144. ]
  145. },
  146. "dependencies": {
  147. }
  148. }
  149. }
  150. }