project.json 2.8 KB

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