project.json 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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. "tags": [ "Rx", "Reactive", "Extensions", "Observable", "LINQ", "Events" ],
  8. "iconUrl": "http://go.microsoft.com/fwlink/?LinkId=261274",
  9. "projectUrl": "http://go.microsoft.com/fwlink/?LinkId=261273",
  10. "licenseUrl": "http://go.microsoft.com/fwlink/?LinkID=261272",
  11. "requireLicenseAcceptance": true,
  12. "compilationOptions": {
  13. "keyFile": "../35MSSharedLib1024.snk",
  14. "publicSign": true,
  15. "define": [ "SIGNED" ]
  16. },
  17. "configurations": {
  18. "ReleaseDelaySigned": {
  19. "compilationOptions": {
  20. "publicSign": false,
  21. "delaySign": true,
  22. "define": [ "RELEASE", "TRACE" ],
  23. "optimize": true
  24. }
  25. }
  26. },
  27. "frameworks": {
  28. "net40": {
  29. "compilationOptions": {
  30. "define": [
  31. "NO_TASK_DELAY",
  32. "HAS_APTCA",
  33. "HAS_WINFORMS",
  34. "USE_TIMER_SELF_ROOT",
  35. "NO_WEAKREFOFT",
  36. "DESKTOPCLR",
  37. "DESKTOPCLR40"
  38. ]
  39. }
  40. },
  41. "net45": {
  42. "compilationOptions": {
  43. "define": [
  44. "NO_EVENTARGS_CONSTRAINT",
  45. "HAS_EDI",
  46. "HAS_WINRT",
  47. "HAS_PROGRESS",
  48. "PREFER_ASYNC",
  49. "HAS_AWAIT",
  50. "HAS_APTCA",
  51. "HAS_DISPATCHER_PRIORITY",
  52. "HAS_WINFORMS",
  53. "USE_TIMER_SELF_ROOT",
  54. "DESKTOPCLR",
  55. "DESKTOPCLR45"
  56. ]
  57. }
  58. },
  59. "netstandard1.0": {
  60. "imports": [ "dotnet5.1" ],
  61. "compilationOptions": {
  62. "define": [
  63. "NO_EVENTARGS_CONSTRAINT",
  64. "HAS_EDI",
  65. "HAS_WINRT",
  66. "HAS_PROGRESS",
  67. "PREFER_ASYNC",
  68. "HAS_AWAIT",
  69. "HAS_APTCA",
  70. "NO_REMOTING",
  71. "NO_SERIALIZABLE",
  72. "NO_THREAD",
  73. "CRIPPLED_REFLECTION",
  74. "NO_CDS_COLLECTIONS",
  75. "USE_TIMER_SELF_ROOT",
  76. "PLIB"
  77. ]
  78. },
  79. "dependencies": {
  80. "System.Diagnostics.Tools": "4.0.1-rc2-23911",
  81. "System.Linq": "4.0.1-rc2-23911",
  82. "System.Linq.Expressions": "4.0.11-rc2-23911",
  83. "System.Resources.ResourceManager": "4.0.1-rc2-23911",
  84. "System.Runtime": "4.1.0-rc2-23911",
  85. "System.Threading": "4.0.11-rc2-23911"
  86. }
  87. },
  88. "sl5": {
  89. "compilationOptions": {
  90. "define": [
  91. "NO_RXINTERFACES",
  92. "USE_SL_DISPATCHER",
  93. "NO_SERIALIZABLE",
  94. "NO_REMOTING",
  95. "NO_SEMAPHORE",
  96. "NO_STOPWATCH",
  97. "NO_CDS",
  98. "NO_TASK_DELAY",
  99. "NO_WEAKREFOFT",
  100. "NO_SORTEDDICTIONARY",
  101. "SILVERLIGHT",
  102. "SILVERLIGHT5"
  103. ]
  104. },
  105. "dependencies": {
  106. "Microsoft.TargetingPack.Private.Silverlight.v5": "1.0.2"
  107. }
  108. }
  109. }
  110. }