project.json 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. {
  2. "version": "3.0.0-*",
  3. "title": "Reactive Extensions - WPF Helpers",
  4. "description": "Windows Presentation Foundation extensions library for Rx. Contains scheduler functionality for the WPF Dispatcher.",
  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. },
  20. "dependencies": {
  21. "System.Reactive.Interfaces": { "target": "project" },
  22. "System.Reactive.Core": { "target": "project" }
  23. },
  24. "frameworks": {
  25. "net40": {
  26. "buildOptions": {
  27. "define": [
  28. "NO_TASK_DELAY",
  29. "HAS_APTCA",
  30. "HAS_WINFORMS",
  31. "USE_TIMER_SELF_ROOT",
  32. "NO_WEAKREFOFT",
  33. "DESKTOPCLR",
  34. "DESKTOPCLR40"
  35. ]
  36. },
  37. "frameworkAssemblies": {
  38. "WindowsBase": ""
  39. }
  40. },
  41. "net45": {
  42. "buildOptions": {
  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. "frameworkAssemblies": {
  59. "System.Windows": "",
  60. "WindowsBase": ""
  61. }
  62. },
  63. "wpa81": {
  64. "buildOptions": {
  65. "define": [
  66. "NO_EVENTARGS_CONSTRAINT",
  67. "HAS_EDI",
  68. "HAS_WINRT",
  69. "HAS_PROGRESS",
  70. "PREFER_ASYNC",
  71. "HAS_AWAIT",
  72. "NO_REMOTING",
  73. "NO_SERIALIZABLE",
  74. "NO_THREAD",
  75. "CRIPPLED_REFLECTION",
  76. "USE_TIMER_SELF_ROOT",
  77. "WINDOWS",
  78. "WINDOWS81"
  79. ]
  80. },
  81. "dependencies": {
  82. "Microsoft.TargetingPack.Private.WinRT": {
  83. "version": "1.0.1",
  84. "type": "build"
  85. },
  86. "Microsoft.TargetingPack.Private.WindowsPhone.v8.1": {
  87. "version": "1.0.1",
  88. "type": "build"
  89. }
  90. }
  91. },
  92. "netcore451": {
  93. "buildOptions": {
  94. "define": [
  95. "NO_EVENTARGS_CONSTRAINT",
  96. "HAS_EDI",
  97. "HAS_WINRT",
  98. "HAS_PROGRESS",
  99. "PREFER_ASYNC",
  100. "HAS_AWAIT",
  101. "NO_REMOTING",
  102. "NO_SERIALIZABLE",
  103. "NO_THREAD",
  104. "CRIPPLED_REFLECTION",
  105. "USE_TIMER_SELF_ROOT",
  106. "WINDOWS",
  107. "WINDOWS81"
  108. ]
  109. },
  110. "dependencies": {
  111. "Microsoft.TargetingPack.Private.WinRT": {
  112. "version": "1.0.1",
  113. "type": "build"
  114. },
  115. "Microsoft.TargetingPack.Private.NETCore.v4.5.1": {
  116. "version": "1.0.0",
  117. "type": "build"
  118. }
  119. }
  120. },
  121. "uap10.0": {
  122. "imports": ["dotnet5.4"],
  123. "buildOptions": {
  124. "define": [
  125. "NO_EVENTARGS_CONSTRAINT",
  126. "HAS_EDI",
  127. "HAS_WINRT",
  128. "HAS_PROGRESS",
  129. "PREFER_ASYNC",
  130. "HAS_AWAIT",
  131. "HAS_APTCA",
  132. "HAS_TPL46",
  133. "NO_REMOTING",
  134. "NO_SERIALIZABLE",
  135. "NO_THREAD",
  136. "CRIPPLED_REFLECTION",
  137. "WINDOWS",
  138. "USE_TIMER_SELF_ROOT"
  139. ]
  140. },
  141. "dependencies": {
  142. "Microsoft.TargetingPack.Private.WinRT": {
  143. "version": "1.0.1",
  144. "type": "build"
  145. },
  146. "Microsoft.NETCore.UniversalWindowsPlatform": {
  147. "version": "5.2.0-rc2-24027",
  148. "type": "build"
  149. }
  150. }
  151. }
  152. }
  153. }