project.json 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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. "dependencies": {
  13. "System.Reactive.Interfaces": { "target": "project" },
  14. "System.Reactive.Core": { "target": "project" },
  15. "System.Reactive.Linq": { "target": "project" }
  16. },
  17. "frameworks": {
  18. "net40": {
  19. "compilationOptions": {
  20. "define": [
  21. "NO_TASK_DELAY",
  22. "HAS_APTCA",
  23. "HAS_WINFORMS",
  24. "USE_TIMER_SELF_ROOT",
  25. "NO_WEAKREFOFT",
  26. "DESKTOPCLR",
  27. "DESKTOPCLR40"
  28. ]
  29. }
  30. },
  31. "net45": {
  32. "compilationOptions": {
  33. "define": [
  34. "NO_EVENTARGS_CONSTRAINT",
  35. "HAS_EDI",
  36. "HAS_WINRT",
  37. "HAS_PROGRESS",
  38. "PREFER_ASYNC",
  39. "HAS_AWAIT",
  40. "HAS_APTCA",
  41. "HAS_DISPATCHER_PRIORITY",
  42. "HAS_WINFORMS",
  43. "USE_TIMER_SELF_ROOT",
  44. "DESKTOPCLR",
  45. "DESKTOPCLR45"
  46. ]
  47. }
  48. },
  49. "net46": {
  50. "compilationOptions": {
  51. "define": [
  52. "NO_EVENTARGS_CONSTRAINT",
  53. "HAS_EDI",
  54. "HAS_WINRT",
  55. "HAS_PROGRESS",
  56. "PREFER_ASYNC",
  57. "HAS_AWAIT",
  58. "HAS_APTCA",
  59. "HAS_DISPATCHER_PRIORITY",
  60. "HAS_TPL46",
  61. "HAS_WINFORMS",
  62. "USE_TIMER_SELF_ROOT",
  63. "DESKTOPCLR",
  64. "DESKTOPCLR46"
  65. ]
  66. }
  67. },
  68. "netstandard1.0": {
  69. "imports": [ "dotnet5.1" ],
  70. "compilationOptions": {
  71. "define": [
  72. "NO_EVENTARGS_CONSTRAINT",
  73. "HAS_EDI",
  74. "HAS_WINRT",
  75. "HAS_PROGRESS",
  76. "PREFER_ASYNC",
  77. "HAS_AWAIT",
  78. "HAS_APTCA",
  79. "NO_REMOTING",
  80. "NO_SERIALIZABLE",
  81. "NO_THREAD",
  82. "CRIPPLED_REFLECTION",
  83. "NO_CDS_COLLECTIONS",
  84. "USE_TIMER_SELF_ROOT",
  85. "PLIB"
  86. ]
  87. },
  88. "dependencies": {
  89. }
  90. },
  91. "netstandard1.3": {
  92. "imports": [ "dotnet5.4" ],
  93. "compilationOptions": {
  94. "define": [
  95. "NO_EVENTARGS_CONSTRAINT",
  96. "HAS_EDI",
  97. "HAS_WINRT",
  98. "HAS_PROGRESS",
  99. "PREFER_ASYNC",
  100. "HAS_AWAIT",
  101. "HAS_APTCA",
  102. "NO_REMOTING",
  103. "NO_SERIALIZABLE",
  104. "NO_THREAD",
  105. "CRIPPLED_REFLECTION",
  106. "PLIB",
  107. "USE_TIMER_SELF_ROOT"
  108. ]
  109. },
  110. "dependencies": {
  111. }
  112. }
  113. }
  114. }