project.json 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. {
  2. "version": "3.0.0-*",
  3. "title": "Reactive Extensions - Interfaces Library",
  4. "description": "Reactive Extensions Interfaces Library containing essential interfaces.",
  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": "../35MSSharedLib1024.snk",
  16. "publicSign": true,
  17. "define": [ "SIGNED" ],
  18. "nowarn": [ "CS1591" ],
  19. "xmlDoc": true
  20. },
  21. "configurations": {
  22. "ReleaseDelaySigned": {
  23. "buildOptions": {
  24. "publicSign": false,
  25. "delaySign": true,
  26. "define": ["RELEASE", "TRACE"],
  27. "optimize": true
  28. }
  29. }
  30. },
  31. "frameworks": {
  32. "net40": {
  33. "buildOptions": {
  34. "define": [
  35. "NO_TASK_DELAY",
  36. "HAS_APTCA",
  37. "HAS_WINFORMS",
  38. "USE_TIMER_SELF_ROOT",
  39. "NO_WEAKREFOFT",
  40. "DESKTOPCLR",
  41. "DESKTOPCLR40"
  42. ]
  43. }
  44. },
  45. "net45": {
  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_WINFORMS",
  57. "USE_TIMER_SELF_ROOT",
  58. "DESKTOPCLR",
  59. "DESKTOPCLR45"
  60. ]
  61. }
  62. },
  63. "netstandard1.0": {
  64. "buildOptions": {
  65. "define": [
  66. "NO_EVENTARGS_CONSTRAINT",
  67. "HAS_EDI",
  68. "HAS_WINRT",
  69. "HAS_PROGRESS",
  70. "PREFER_ASYNC",
  71. "HAS_AWAIT",
  72. "HAS_APTCA",
  73. "NO_REMOTING",
  74. "NO_SERIALIZABLE",
  75. "NO_THREAD",
  76. "CRIPPLED_REFLECTION",
  77. "NO_CDS_COLLECTIONS",
  78. "USE_TIMER_SELF_ROOT",
  79. "PLIB"
  80. ]
  81. },
  82. "dependencies": {
  83. "NETStandard.Library": "1.5.0-rc2-24027",
  84. "System.Linq.Expressions": "4.0.11-rc2-24027"
  85. }
  86. },
  87. "sl5": {
  88. "buildOptions": {
  89. "define": [
  90. "NO_RXINTERFACES",
  91. "USE_SL_DISPATCHER",
  92. "NO_SERIALIZABLE",
  93. "NO_REMOTING",
  94. "NO_SEMAPHORE",
  95. "NO_STOPWATCH",
  96. "NO_CDS",
  97. "NO_TASK_DELAY",
  98. "NO_WEAKREFOFT",
  99. "NO_SORTEDDICTIONARY",
  100. "SILVERLIGHT",
  101. "SILVERLIGHT5"
  102. ]
  103. },
  104. "dependencies": {
  105. "Microsoft.TargetingPack.Private.Silverlight.v5": {
  106. "version": "1.0.2",
  107. "type": "build"
  108. }
  109. }
  110. }
  111. }
  112. }