project.json 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. {
  2. "version": "3.0.0-*",
  3. "title": "Reactive Extensions - Core Library",
  4. "description": "Reactive Extensions Core Library containing base classes and scheduler infrastructure.",
  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.Providers": { "target": "project" }
  31. },
  32. "frameworks": {
  33. "net40": {
  34. "buildOptions": {
  35. "define": [
  36. "NO_TASK_DELAY",
  37. "HAS_APTCA",
  38. "HAS_WINFORMS",
  39. "USE_TIMER_SELF_ROOT",
  40. "NO_WEAKREFOFT",
  41. "DESKTOPCLR",
  42. "DESKTOPCLR40"
  43. ]
  44. }
  45. },
  46. "net45": {
  47. "buildOptions": {
  48. "define": [
  49. "NO_EVENTARGS_CONSTRAINT",
  50. "HAS_EDI",
  51. "HAS_WINRT",
  52. "HAS_PROGRESS",
  53. "PREFER_ASYNC",
  54. "HAS_AWAIT",
  55. "HAS_APTCA",
  56. "HAS_DISPATCHER_PRIORITY",
  57. "HAS_WINFORMS",
  58. "USE_TIMER_SELF_ROOT",
  59. "DESKTOPCLR",
  60. "DESKTOPCLR45"
  61. ]
  62. }
  63. },
  64. "net46": {
  65. "buildOptions": {
  66. "define": [
  67. "NO_EVENTARGS_CONSTRAINT",
  68. "HAS_EDI",
  69. "HAS_WINRT",
  70. "HAS_PROGRESS",
  71. "PREFER_ASYNC",
  72. "HAS_AWAIT",
  73. "HAS_APTCA",
  74. "HAS_DISPATCHER_PRIORITY",
  75. "HAS_TPL46",
  76. "HAS_WINFORMS",
  77. "USE_TIMER_SELF_ROOT",
  78. "DESKTOPCLR",
  79. "DESKTOPCLR46"
  80. ]
  81. }
  82. },
  83. "netstandard1.0": {
  84. "buildOptions": {
  85. "define": [
  86. "NO_EVENTARGS_CONSTRAINT",
  87. "HAS_EDI",
  88. "HAS_WINRT",
  89. "HAS_PROGRESS",
  90. "PREFER_ASYNC",
  91. "HAS_AWAIT",
  92. "HAS_APTCA",
  93. "NO_REMOTING",
  94. "NO_SERIALIZABLE",
  95. "NO_THREAD",
  96. "CRIPPLED_REFLECTION",
  97. "NO_CDS_COLLECTIONS",
  98. "USE_TIMER_SELF_ROOT",
  99. "PLIB"
  100. ]
  101. },
  102. "dependencies": {
  103. }
  104. },
  105. "netstandard1.3": {
  106. "buildOptions": {
  107. "define": [
  108. "NO_EVENTARGS_CONSTRAINT",
  109. "HAS_EDI",
  110. "HAS_WINRT",
  111. "HAS_PROGRESS",
  112. "PREFER_ASYNC",
  113. "HAS_AWAIT",
  114. "HAS_APTCA",
  115. "HAS_TPL46",
  116. "NO_REMOTING",
  117. "NO_SERIALIZABLE",
  118. "NO_THREAD",
  119. "CRIPPLED_REFLECTION",
  120. "PLIB",
  121. "USE_TIMER_SELF_ROOT"
  122. ]
  123. },
  124. "dependencies": {
  125. }
  126. },
  127. "sl5": {
  128. "buildOptions": {
  129. "define": [
  130. "NO_RXINTERFACES",
  131. "USE_SL_DISPATCHER",
  132. "NO_SERIALIZABLE",
  133. "NO_REMOTING",
  134. "NO_SEMAPHORE",
  135. "NO_STOPWATCH",
  136. "NO_CDS",
  137. "NO_TASK_DELAY",
  138. "NO_WEAKREFOFT",
  139. "NO_SORTEDDICTIONARY",
  140. "SILVERLIGHT",
  141. "SILVERLIGHT5"
  142. ]
  143. },
  144. "dependencies": {
  145. }
  146. }
  147. }
  148. }