project.json 4.5 KB

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