project.json 2.5 KB

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