project.json 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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. },
  19. "configurations": {
  20. "ReleaseDelaySigned": {
  21. "buildOptions": {
  22. "publicSign": false,
  23. "delaySign": true,
  24. "define": ["RELEASE", "TRACE"],
  25. "optimize": true
  26. }
  27. }
  28. },
  29. "frameworks": {
  30. "net40": {
  31. "buildOptions": {
  32. "define": [
  33. "NO_TASK_DELAY",
  34. "HAS_APTCA",
  35. "HAS_WINFORMS",
  36. "USE_TIMER_SELF_ROOT",
  37. "NO_WEAKREFOFT",
  38. "DESKTOPCLR",
  39. "DESKTOPCLR40"
  40. ]
  41. }
  42. },
  43. "net45": {
  44. "buildOptions": {
  45. "define": [
  46. "NO_EVENTARGS_CONSTRAINT",
  47. "HAS_EDI",
  48. "HAS_WINRT",
  49. "HAS_PROGRESS",
  50. "PREFER_ASYNC",
  51. "HAS_AWAIT",
  52. "HAS_APTCA",
  53. "HAS_DISPATCHER_PRIORITY",
  54. "HAS_WINFORMS",
  55. "USE_TIMER_SELF_ROOT",
  56. "DESKTOPCLR",
  57. "DESKTOPCLR45"
  58. ]
  59. }
  60. },
  61. "netstandard1.0": {
  62. "buildOptions": {
  63. "define": [
  64. "NO_EVENTARGS_CONSTRAINT",
  65. "HAS_EDI",
  66. "HAS_WINRT",
  67. "HAS_PROGRESS",
  68. "PREFER_ASYNC",
  69. "HAS_AWAIT",
  70. "HAS_APTCA",
  71. "NO_REMOTING",
  72. "NO_SERIALIZABLE",
  73. "NO_THREAD",
  74. "CRIPPLED_REFLECTION",
  75. "NO_CDS_COLLECTIONS",
  76. "USE_TIMER_SELF_ROOT",
  77. "PLIB"
  78. ]
  79. },
  80. "dependencies": {
  81. "NETStandard.Library": "1.5.0-rc2-24027",
  82. "System.Linq.Expressions": "4.0.11-rc2-24027"
  83. }
  84. },
  85. "sl5": {
  86. "buildOptions": {
  87. "define": [
  88. "NO_RXINTERFACES",
  89. "USE_SL_DISPATCHER",
  90. "NO_SERIALIZABLE",
  91. "NO_REMOTING",
  92. "NO_SEMAPHORE",
  93. "NO_STOPWATCH",
  94. "NO_CDS",
  95. "NO_TASK_DELAY",
  96. "NO_WEAKREFOFT",
  97. "NO_SORTEDDICTIONARY",
  98. "SILVERLIGHT",
  99. "SILVERLIGHT5"
  100. ]
  101. },
  102. "dependencies": {
  103. "Microsoft.TargetingPack.Private.Silverlight.v5": "1.0.2"
  104. }
  105. }
  106. }
  107. }