project.json 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. {
  2. "version": "3.0.0-*",
  3. "title": "Reactive Extensions - Windows Forms Helpers",
  4. "description":
  5. "Windows Forms extensions library for Rx. Contains scheduler functionality for the Windows Forms UI loop.",
  6. "authors": ["Microsoft"],
  7. "copyright": "Copyright (C) Microsoft Corporation",
  8. "packOptions": {
  9. "tags": ["Rx", "Reactive", "Extensions", "Observable", "LINQ", "Events"],
  10. "iconUrl": "http://go.microsoft.com/fwlink/?LinkId=261274",
  11. "projectUrl": "http://go.microsoft.com/fwlink/?LinkId=261273",
  12. "licenseUrl": "http://go.microsoft.com/fwlink/?LinkID=261272",
  13. "requireLicenseAcceptance": true
  14. },
  15. "buildOptions": {
  16. "keyFile": "../35MSSharedLib1024.snk",
  17. "publicSign": true,
  18. "define": ["SIGNED"]
  19. },
  20. "configurations": {
  21. "ReleaseDelaySigned": {
  22. "buildOptions": {
  23. "publicSign": false,
  24. "delaySign": true,
  25. "define": ["RELEASE", "TRACE"],
  26. "optimize": true
  27. }
  28. }
  29. },
  30. "dependencies": {
  31. "System.Reactive.Linq": { "target": "project" }
  32. },
  33. "frameworks": {
  34. "wpa81": {
  35. "buildOptions": {
  36. "define": [
  37. "NO_EVENTARGS_CONSTRAINT",
  38. "HAS_EDI",
  39. "HAS_WINRT",
  40. "HAS_PROGRESS",
  41. "PREFER_ASYNC",
  42. "HAS_AWAIT",
  43. "NO_REMOTING",
  44. "NO_SERIALIZABLE",
  45. "NO_THREAD",
  46. "CRIPPLED_REFLECTION",
  47. "USE_TIMER_SELF_ROOT",
  48. "WINDOWS",
  49. "WINDOWS81"
  50. ]
  51. },
  52. "dependencies": {
  53. "Microsoft.TargetingPack.Private.WinRT": {
  54. "version": "1.0.1",
  55. "type": "build"
  56. },
  57. "Microsoft.TargetingPack.Private.WindowsPhone.v8.1": {
  58. "version": "1.0.1",
  59. "type": "build"
  60. }
  61. }
  62. },
  63. "netcore451": {
  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.NETCore.v4.5.1": {
  87. "version": "1.0.0",
  88. "type": "build"
  89. }
  90. }
  91. },
  92. "uap10.0": {
  93. "imports": ["dotnet5.4"],
  94. "buildOptions": {
  95. "define": [
  96. "NO_EVENTARGS_CONSTRAINT",
  97. "HAS_EDI",
  98. "HAS_WINRT",
  99. "HAS_PROGRESS",
  100. "PREFER_ASYNC",
  101. "HAS_AWAIT",
  102. "HAS_APTCA",
  103. "HAS_TPL46",
  104. "NO_REMOTING",
  105. "NO_SERIALIZABLE",
  106. "NO_THREAD",
  107. "CRIPPLED_REFLECTION",
  108. "WINDOWS",
  109. "USE_TIMER_SELF_ROOT"
  110. ]
  111. },
  112. "dependencies": {
  113. "Microsoft.TargetingPack.Private.WinRT": {
  114. "version": "1.0.1",
  115. "type": "build"
  116. },
  117. "Microsoft.NETCore.UniversalWindowsPlatform": {
  118. "version": "5.2.0-rc2-24027",
  119. "type": "build"
  120. }
  121. }
  122. }
  123. }
  124. }