project.json 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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": "../ReactiveX.snk",
  16. "define": [ "SIGNED" ],
  17. "nowarn": [ "CS1591" ],
  18. "xmlDoc": true
  19. },
  20. "dependencies": {
  21. "System.Reactive.Interfaces": { "target": "project" },
  22. "System.Reactive.Core": { "target": "project" }
  23. },
  24. "frameworks": {
  25. "net45": {
  26. "buildOptions": {
  27. "define": [
  28. "NO_EVENTARGS_CONSTRAINT",
  29. "HAS_EDI",
  30. "HAS_WINRT",
  31. "HAS_PROGRESS",
  32. "PREFER_ASYNC",
  33. "HAS_AWAIT",
  34. "HAS_APTCA",
  35. "HAS_DISPATCHER_PRIORITY",
  36. "HAS_WINFORMS",
  37. "USE_TIMER_SELF_ROOT",
  38. "DESKTOPCLR",
  39. "DESKTOPCLR45"
  40. ]
  41. },
  42. "frameworkAssemblies": {
  43. "System.Windows": "",
  44. "System.Windows.Forms": "",
  45. "WindowsBase": ""
  46. }
  47. },
  48. "net46": {
  49. "buildOptions": {
  50. "define": [
  51. "NO_EVENTARGS_CONSTRAINT",
  52. "HAS_EDI",
  53. "HAS_WINRT",
  54. "HAS_PROGRESS",
  55. "PREFER_ASYNC",
  56. "HAS_AWAIT",
  57. "HAS_APTCA",
  58. "HAS_DISPATCHER_PRIORITY",
  59. "HAS_TPL46",
  60. "HAS_WINFORMS",
  61. "USE_TIMER_SELF_ROOT",
  62. "DESKTOPCLR",
  63. "DESKTOPCLR46"
  64. ]
  65. },
  66. "frameworkAssemblies": {
  67. "System.Windows": "",
  68. "System.Windows.Forms": "",
  69. "WindowsBase": ""
  70. }
  71. }
  72. }
  73. }