project.json 2.6 KB

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