project.json 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. {
  2. "version": "3.0.0-*",
  3. "title": "Reactive Extensions - Windows Forms Helpers",
  4. "description": "Windows Forms extensions library for Rx. Contains scheduler functionality for the Windows Forms UI loop.",
  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.Linq": { "target": "project" }
  22. },
  23. "frameworks": {
  24. "wpa81": {
  25. "buildOptions": {
  26. "define": [
  27. "NO_EVENTARGS_CONSTRAINT",
  28. "HAS_EDI",
  29. "HAS_WINRT",
  30. "HAS_PROGRESS",
  31. "PREFER_ASYNC",
  32. "HAS_AWAIT",
  33. "NO_REMOTING",
  34. "NO_SERIALIZABLE",
  35. "NO_THREAD",
  36. "CRIPPLED_REFLECTION",
  37. "USE_TIMER_SELF_ROOT",
  38. "WINDOWS",
  39. "WINDOWS81"
  40. ]
  41. },
  42. "dependencies": {
  43. "Microsoft.TargetingPack.Private.WinRT": {
  44. "version": "1.0.1",
  45. "type": "build"
  46. },
  47. "Microsoft.TargetingPack.Private.WindowsPhone.v8.1": {
  48. "version": "1.0.1",
  49. "type": "build"
  50. }
  51. }
  52. },
  53. "netcore451": {
  54. "buildOptions": {
  55. "define": [
  56. "NO_EVENTARGS_CONSTRAINT",
  57. "HAS_EDI",
  58. "HAS_WINRT",
  59. "HAS_PROGRESS",
  60. "PREFER_ASYNC",
  61. "HAS_AWAIT",
  62. "NO_REMOTING",
  63. "NO_SERIALIZABLE",
  64. "NO_THREAD",
  65. "CRIPPLED_REFLECTION",
  66. "USE_TIMER_SELF_ROOT",
  67. "WINDOWS",
  68. "WINDOWS81"
  69. ]
  70. },
  71. "dependencies": {
  72. "Microsoft.TargetingPack.Private.WinRT": {
  73. "version": "1.0.1",
  74. "type": "build"
  75. },
  76. "Microsoft.TargetingPack.Private.NETCore.v4.5.1": {
  77. "version": "1.0.0",
  78. "type": "build"
  79. }
  80. }
  81. },
  82. "uap10.0": {
  83. "imports": ["dotnet5.4"],
  84. "buildOptions": {
  85. "define": [
  86. "NO_EVENTARGS_CONSTRAINT",
  87. "HAS_EDI",
  88. "HAS_WINRT",
  89. "HAS_PROGRESS",
  90. "PREFER_ASYNC",
  91. "HAS_AWAIT",
  92. "HAS_APTCA",
  93. "HAS_TPL46",
  94. "NO_REMOTING",
  95. "NO_SERIALIZABLE",
  96. "NO_THREAD",
  97. "CRIPPLED_REFLECTION",
  98. "WINDOWS",
  99. "USE_TIMER_SELF_ROOT"
  100. ]
  101. },
  102. "dependencies": {
  103. "Microsoft.TargetingPack.Private.WinRT": {
  104. "version": "1.0.1",
  105. "type": "build"
  106. },
  107. "Microsoft.NETCore.UniversalWindowsPlatform": {
  108. "version": "5.2.0",
  109. "type": "build"
  110. }
  111. }
  112. }
  113. }
  114. }