project.json 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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. "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": "../ReactiveX.snk",
  16. "define": [ "SIGNED" ],
  17. "nowarn": [ "CS1591" ],
  18. "xmlDoc": true,
  19. "compile": {
  20. "exclude": [
  21. "*/**/ImmutableList.cs",
  22. "Reactive/Observer.Extensions.cs",
  23. "Reactive/Internal/Observers.cs",
  24. "Reactive/Internal/Producer.cs"
  25. ]
  26. },
  27. "embed": {
  28. "includeFiles": "Properties/System.Reactive.Linq.rd.xml"
  29. }
  30. },
  31. "dependencies": {
  32. "System.Reactive.Core": { "target": "project" },
  33. "System.Runtime.InteropServices.WindowsRuntime": "4.0.1"
  34. },
  35. "frameworks": {
  36. "net45": {
  37. "buildOptions": {
  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. "buildOptions": {
  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. "buildOptions": {
  75. "define": [
  76. "NO_EVENTARGS_CONSTRAINT",
  77. "HAS_EDI",
  78. "HAS_WINRT",
  79. "HAS_PROGRESS",
  80. "PREFER_ASYNC",
  81. "HAS_AWAIT",
  82. "HAS_APTCA",
  83. "NO_REMOTING",
  84. "NO_SERIALIZABLE",
  85. "NO_THREAD",
  86. "CRIPPLED_REFLECTION",
  87. "NO_CDS_COLLECTIONS",
  88. "USE_TIMER_SELF_ROOT",
  89. "PLIB"
  90. ]
  91. }
  92. },
  93. "netstandard1.3": {
  94. "buildOptions": {
  95. "define": [
  96. "NO_EVENTARGS_CONSTRAINT",
  97. "HAS_EDI",
  98. "HAS_WINRT",
  99. "HAS_PROGRESS",
  100. "HAS_TPL46",
  101. "PREFER_ASYNC",
  102. "HAS_AWAIT",
  103. "HAS_APTCA",
  104. "NO_REMOTING",
  105. "NO_SERIALIZABLE",
  106. "NO_THREAD",
  107. "CRIPPLED_REFLECTION",
  108. "PLIB",
  109. "USE_TIMER_SELF_ROOT"
  110. ]
  111. }
  112. }
  113. }
  114. }