project.json 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  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. "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.Experimental.rd.xml"
  21. },
  22. "compile": {
  23. "includeFiles": [ "../GlobalAssemblyVersion.cs" ]
  24. }
  25. },
  26. "dependencies": {
  27. "System.Reactive.Interfaces": { "target": "project" },
  28. "System.Reactive.Core": { "target": "project" },
  29. "System.Reactive.Linq": { "target": "project" }
  30. },
  31. "frameworks": {
  32. "net45": {
  33. "buildOptions": {
  34. "define": [
  35. "NO_EVENTARGS_CONSTRAINT",
  36. "HAS_EDI",
  37. "HAS_WINRT",
  38. "HAS_PROGRESS",
  39. "PREFER_ASYNC",
  40. "HAS_AWAIT",
  41. "HAS_APTCA",
  42. "HAS_DISPATCHER_PRIORITY",
  43. "HAS_WINFORMS",
  44. "USE_TIMER_SELF_ROOT",
  45. "DESKTOPCLR",
  46. "DESKTOPCLR45"
  47. ]
  48. }
  49. },
  50. "net46": {
  51. "buildOptions": {
  52. "define": [
  53. "NO_EVENTARGS_CONSTRAINT",
  54. "HAS_EDI",
  55. "HAS_WINRT",
  56. "HAS_PROGRESS",
  57. "PREFER_ASYNC",
  58. "HAS_AWAIT",
  59. "HAS_APTCA",
  60. "HAS_DISPATCHER_PRIORITY",
  61. "HAS_TPL46",
  62. "HAS_WINFORMS",
  63. "USE_TIMER_SELF_ROOT",
  64. "DESKTOPCLR",
  65. "DESKTOPCLR46"
  66. ]
  67. }
  68. },
  69. "netstandard1.0": {
  70. "buildOptions": {
  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. },
  89. "netstandard1.3": {
  90. "buildOptions": {
  91. "define": [
  92. "NO_EVENTARGS_CONSTRAINT",
  93. "HAS_EDI",
  94. "HAS_WINRT",
  95. "HAS_PROGRESS",
  96. "PREFER_ASYNC",
  97. "HAS_AWAIT",
  98. "HAS_APTCA",
  99. "HAS_TPL46",
  100. "NO_REMOTING",
  101. "NO_SERIALIZABLE",
  102. "NO_THREAD",
  103. "CRIPPLED_REFLECTION",
  104. "PLIB",
  105. "USE_TIMER_SELF_ROOT"
  106. ]
  107. }
  108. }
  109. }
  110. }