project.json 3.0 KB

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