project.json 3.2 KB

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