project.json 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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-23811",
  94. "System.Runtime": "4.1.0-rc2-23811",
  95. "System.Runtime.Extensions": "4.1.0-rc2-23811"
  96. }
  97. },
  98. "netstandard1.3": {
  99. "compilationOptions": {
  100. "define": [
  101. "NO_EVENTARGS_CONSTRAINT",
  102. "HAS_EDI",
  103. "HAS_WINRT",
  104. "HAS_PROGRESS",
  105. "PREFER_ASYNC",
  106. "HAS_AWAIT",
  107. "HAS_APTCA",
  108. "NO_REMOTING",
  109. "NO_SERIALIZABLE",
  110. "NO_THREAD",
  111. "CRIPPLED_REFLECTION",
  112. "PLIB",
  113. "USE_TIMER_SELF_ROOT"
  114. ]
  115. },
  116. "imports": [ "dotnet5.4"],
  117. "dependencies": {
  118. "System.Collections.Concurrent": "4.0.12-rc2-23811",
  119. "System.Reflection": "4.1.0-rc2-23811",
  120. "System.Runtime.InteropServices.WindowsRuntime": "4.0.1-rc2-23811"
  121. }
  122. }
  123. }
  124. }