project.json 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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": "../ReactiveX.snk",
  16. "define": [ "SIGNED" ],
  17. "nowarn": [ "CS1591" ],
  18. "xmlDoc": true,
  19. "embed": {
  20. "includeFiles": "Properties/System.Reactive.Providers.rd.xml"
  21. }
  22. },
  23. "dependencies": {
  24. "System.Reactive.Linq": { "target": "project" }
  25. },
  26. "frameworks": {
  27. "net40": {
  28. "buildOptions": {
  29. "define": [
  30. "NO_TASK_DELAY",
  31. "HAS_APTCA",
  32. "HAS_WINFORMS",
  33. "USE_TIMER_SELF_ROOT",
  34. "NO_WEAKREFOFT",
  35. "DESKTOPCLR",
  36. "DESKTOPCLR40"
  37. ]
  38. }
  39. },
  40. "net45": {
  41. "buildOptions": {
  42. "define": [
  43. "NO_EVENTARGS_CONSTRAINT",
  44. "HAS_EDI",
  45. "HAS_WINRT",
  46. "HAS_PROGRESS",
  47. "PREFER_ASYNC",
  48. "HAS_AWAIT",
  49. "HAS_APTCA",
  50. "HAS_DISPATCHER_PRIORITY",
  51. "HAS_WINFORMS",
  52. "USE_TIMER_SELF_ROOT",
  53. "DESKTOPCLR",
  54. "DESKTOPCLR45"
  55. ]
  56. },
  57. "dependencies": {
  58. }
  59. },
  60. "net46": {
  61. "buildOptions": {
  62. "define": [
  63. "NO_EVENTARGS_CONSTRAINT",
  64. "HAS_EDI",
  65. "HAS_WINRT",
  66. "HAS_PROGRESS",
  67. "PREFER_ASYNC",
  68. "HAS_AWAIT",
  69. "HAS_APTCA",
  70. "HAS_DISPATCHER_PRIORITY",
  71. "HAS_TPL46",
  72. "HAS_WINFORMS",
  73. "USE_TIMER_SELF_ROOT",
  74. "DESKTOPCLR",
  75. "DESKTOPCLR46"
  76. ]
  77. }
  78. },
  79. "netstandard1.0": {
  80. "buildOptions": {
  81. "define": [
  82. "NO_EVENTARGS_CONSTRAINT",
  83. "HAS_EDI",
  84. "HAS_WINRT",
  85. "HAS_PROGRESS",
  86. "PREFER_ASYNC",
  87. "HAS_AWAIT",
  88. "HAS_APTCA",
  89. "NO_REMOTING",
  90. "NO_SERIALIZABLE",
  91. "NO_THREAD",
  92. "CRIPPLED_REFLECTION",
  93. "NO_CDS_COLLECTIONS",
  94. "USE_TIMER_SELF_ROOT",
  95. "PLIB"
  96. ]
  97. },
  98. "dependencies": {
  99. "System.Linq.Queryable": "4.0.1-rc2-24027",
  100. "System.Reflection.Extensions": "4.0.1-rc2-24027"
  101. }
  102. },
  103. "netstandard1.3": {
  104. "buildOptions": {
  105. "define": [
  106. "NO_EVENTARGS_CONSTRAINT",
  107. "HAS_EDI",
  108. "HAS_WINRT",
  109. "HAS_PROGRESS",
  110. "PREFER_ASYNC",
  111. "HAS_AWAIT",
  112. "HAS_APTCA",
  113. "HAS_TPL46",
  114. "NO_REMOTING",
  115. "NO_SERIALIZABLE",
  116. "NO_THREAD",
  117. "CRIPPLED_REFLECTION",
  118. "PLIB",
  119. "USE_TIMER_SELF_ROOT"
  120. ]
  121. },
  122. "dependencies": {
  123. "System.Linq.Queryable": "4.0.1-rc2-24027",
  124. "System.Reflection.Extensions": "4.0.1-rc2-24027"
  125. }
  126. }
  127. }
  128. }