1
0

project.json 2.5 KB

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