project.json 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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. "tags": [ "Rx", "Reactive", "Extensions", "Observable", "LINQ", "Events" ],
  8. "iconUrl": "http://go.microsoft.com/fwlink/?LinkId=261274",
  9. "projectUrl": "http://go.microsoft.com/fwlink/?LinkId=261273",
  10. "licenseUrl": "http://go.microsoft.com/fwlink/?LinkID=261272",
  11. "requireLicenseAcceptance": true,
  12. "dependencies": {
  13. "System.Reactive.Linq": { "target": "project" }
  14. },
  15. "frameworks": {
  16. "wpa81": {
  17. "imports": [ "dotnet5.2" ],
  18. "compilationOptions": {
  19. "define": [
  20. "NO_EVENTARGS_CONSTRAINT",
  21. "HAS_EDI",
  22. "HAS_WINRT",
  23. "HAS_PROGRESS",
  24. "PREFER_ASYNC",
  25. "HAS_AWAIT",
  26. "NO_REMOTING",
  27. "NO_SERIALIZABLE",
  28. "NO_THREAD",
  29. "CRIPPLED_REFLECTION",
  30. "USE_TIMER_SELF_ROOT",
  31. "WINDOWS",
  32. "WINDOWS81"
  33. ]
  34. },
  35. "dependencies": {
  36. "Microsoft.TargetingPack.Private.WinRT": {
  37. "version": "1.0.1",
  38. "type": "build"
  39. },
  40. "Microsoft.TargetingPack.Private.WindowsPhone.v.8.1": {
  41. "version": "1.0.0",
  42. "type": "build"
  43. }
  44. }
  45. },
  46. "win81": {
  47. "imports": [ "dotnet5.2" ],
  48. "compilationOptions": {
  49. "define": [
  50. "NO_EVENTARGS_CONSTRAINT",
  51. "HAS_EDI",
  52. "HAS_WINRT",
  53. "HAS_PROGRESS",
  54. "PREFER_ASYNC",
  55. "HAS_AWAIT",
  56. "NO_REMOTING",
  57. "NO_SERIALIZABLE",
  58. "NO_THREAD",
  59. "CRIPPLED_REFLECTION",
  60. "USE_TIMER_SELF_ROOT",
  61. "WINDOWS",
  62. "WINDOWS81"
  63. ]
  64. },
  65. "dependencies": {
  66. "Microsoft.TargetingPack.Private.WinRT": {
  67. "version": "1.0.1",
  68. "type": "build"
  69. },
  70. "Microsoft.TargetingPack.Private.NETCore.v4.5.1": {
  71. "version": "1.0.0",
  72. "type": "build"
  73. }
  74. }
  75. },
  76. "uap10.0": {
  77. "imports": [ "dotnet5.4" ],
  78. "compilationOptions": {
  79. "define": [
  80. "NO_EVENTARGS_CONSTRAINT",
  81. "HAS_EDI",
  82. "HAS_WINRT",
  83. "HAS_PROGRESS",
  84. "PREFER_ASYNC",
  85. "HAS_AWAIT",
  86. "HAS_APTCA",
  87. "HAS_TPL46",
  88. "NO_REMOTING",
  89. "NO_SERIALIZABLE",
  90. "NO_THREAD",
  91. "CRIPPLED_REFLECTION",
  92. "WINDOWS",
  93. "USE_TIMER_SELF_ROOT"
  94. ]
  95. },
  96. "dependencies": {
  97. "Microsoft.TargetingPack.Private.WinRT": {
  98. "version": "1.0.1",
  99. "type": "build"
  100. },
  101. "Microsoft.NETCore.UniversalWindowsPlatform": {
  102. "version": "5.1.0-rc2-23811",
  103. "type": "build"
  104. }
  105. }
  106. }
  107. }
  108. }