project.json 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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. "nowarn": [ "CS1591" ],
  19. "xmlDoc": true
  20. },
  21. "configurations": {
  22. "ReleaseDelaySigned": {
  23. "buildOptions": {
  24. "publicSign": false,
  25. "delaySign": true,
  26. "define": ["RELEASE", "TRACE"],
  27. "optimize": true
  28. }
  29. }
  30. },
  31. "dependencies": {
  32. "System.Reactive.Interfaces": { "target": "project" },
  33. "System.Reactive.Core": { "target": "project" }
  34. },
  35. "frameworks": {
  36. "net40": {
  37. "buildOptions": {
  38. "define": [
  39. "NO_TASK_DELAY",
  40. "HAS_APTCA",
  41. "HAS_WINFORMS",
  42. "USE_TIMER_SELF_ROOT",
  43. "NO_WEAKREFOFT",
  44. "DESKTOPCLR",
  45. "DESKTOPCLR40"
  46. ]
  47. },
  48. "frameworkAssemblies": {
  49. "System.Windows.Forms": "",
  50. "WindowsBase": ""
  51. }
  52. },
  53. "net45": {
  54. "buildOptions": {
  55. "define": [
  56. "NO_EVENTARGS_CONSTRAINT",
  57. "HAS_EDI",
  58. "HAS_WINRT",
  59. "HAS_PROGRESS",
  60. "PREFER_ASYNC",
  61. "HAS_AWAIT",
  62. "HAS_APTCA",
  63. "HAS_DISPATCHER_PRIORITY",
  64. "HAS_WINFORMS",
  65. "USE_TIMER_SELF_ROOT",
  66. "DESKTOPCLR",
  67. "DESKTOPCLR45"
  68. ]
  69. },
  70. "frameworkAssemblies": {
  71. "System.Windows": "",
  72. "System.Windows.Forms": "",
  73. "WindowsBase": ""
  74. }
  75. },
  76. "net46": {
  77. "buildOptions": {
  78. "define": [
  79. "NO_EVENTARGS_CONSTRAINT",
  80. "HAS_EDI",
  81. "HAS_WINRT",
  82. "HAS_PROGRESS",
  83. "PREFER_ASYNC",
  84. "HAS_AWAIT",
  85. "HAS_APTCA",
  86. "HAS_DISPATCHER_PRIORITY",
  87. "HAS_TPL46",
  88. "HAS_WINFORMS",
  89. "USE_TIMER_SELF_ROOT",
  90. "DESKTOPCLR",
  91. "DESKTOPCLR46"
  92. ]
  93. },
  94. "frameworkAssemblies": {
  95. "System.Windows": "",
  96. "System.Windows.Forms": "",
  97. "WindowsBase": ""
  98. }
  99. }
  100. }
  101. }