project.json 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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. "compile": {
  20. "includeFiles": [ "../GlobalAssemblyVersion.cs" ]
  21. }
  22. },
  23. "dependencies": {
  24. "System.Reactive.Interfaces": { "target": "project" },
  25. "System.Reactive.Core": { "target": "project" }
  26. },
  27. "frameworks": {
  28. "net45": {
  29. "buildOptions": {
  30. "define": [
  31. "NO_EVENTARGS_CONSTRAINT",
  32. "HAS_EDI",
  33. "HAS_WINRT",
  34. "HAS_PROGRESS",
  35. "PREFER_ASYNC",
  36. "HAS_AWAIT",
  37. "HAS_APTCA",
  38. "HAS_DISPATCHER_PRIORITY",
  39. "HAS_WINFORMS",
  40. "USE_TIMER_SELF_ROOT",
  41. "DESKTOPCLR",
  42. "DESKTOPCLR45"
  43. ]
  44. },
  45. "frameworkAssemblies": {
  46. "System.Windows": "",
  47. "WindowsBase": ""
  48. }
  49. },
  50. "wpa81": {
  51. "buildOptions": {
  52. "define": [
  53. "NO_EVENTARGS_CONSTRAINT",
  54. "HAS_EDI",
  55. "HAS_WINRT",
  56. "HAS_PROGRESS",
  57. "PREFER_ASYNC",
  58. "HAS_AWAIT",
  59. "NO_REMOTING",
  60. "NO_SERIALIZABLE",
  61. "NO_THREAD",
  62. "CRIPPLED_REFLECTION",
  63. "USE_TIMER_SELF_ROOT",
  64. "WINDOWS",
  65. "WINDOWS81"
  66. ]
  67. },
  68. "dependencies": {
  69. "Microsoft.TargetingPack.Private.WinRT": {
  70. "version": "1.0.1",
  71. "type": "build"
  72. },
  73. "Microsoft.TargetingPack.Private.WindowsPhone.v8.1": {
  74. "version": "1.0.1",
  75. "type": "build"
  76. }
  77. }
  78. },
  79. "netcore451": {
  80. "buildOptions": {
  81. "define": [
  82. "NO_EVENTARGS_CONSTRAINT",
  83. "HAS_EDI",
  84. "HAS_WINRT",
  85. "HAS_PROGRESS",
  86. "PREFER_ASYNC",
  87. "HAS_AWAIT",
  88. "NO_REMOTING",
  89. "NO_SERIALIZABLE",
  90. "NO_THREAD",
  91. "CRIPPLED_REFLECTION",
  92. "USE_TIMER_SELF_ROOT",
  93. "WINDOWS",
  94. "WINDOWS81"
  95. ]
  96. },
  97. "dependencies": {
  98. "Microsoft.TargetingPack.Private.WinRT": {
  99. "version": "1.0.1",
  100. "type": "build"
  101. },
  102. "Microsoft.TargetingPack.Private.NETCore.v4.5.1": {
  103. "version": "1.0.0",
  104. "type": "build"
  105. }
  106. }
  107. },
  108. "uap10.0": {
  109. "imports": ["dotnet5.4"],
  110. "buildOptions": {
  111. "define": [
  112. "NO_EVENTARGS_CONSTRAINT",
  113. "HAS_EDI",
  114. "HAS_WINRT",
  115. "HAS_PROGRESS",
  116. "PREFER_ASYNC",
  117. "HAS_AWAIT",
  118. "HAS_APTCA",
  119. "HAS_TPL46",
  120. "NO_REMOTING",
  121. "NO_SERIALIZABLE",
  122. "NO_THREAD",
  123. "CRIPPLED_REFLECTION",
  124. "WINDOWS",
  125. "USE_TIMER_SELF_ROOT"
  126. ]
  127. },
  128. "dependencies": {
  129. "Microsoft.TargetingPack.Private.WinRT": {
  130. "version": "1.0.1",
  131. "type": "build"
  132. },
  133. "Microsoft.NETCore.UniversalWindowsPlatform": {
  134. "version": "5.2.0",
  135. "type": "build"
  136. }
  137. }
  138. }
  139. }
  140. }