project.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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. "compile": {
  20. "includeFiles": [ "../GlobalAssemblyVersion.cs" ]
  21. }
  22. },
  23. "dependencies": {
  24. "System.Reactive.Interfaces": { "target": "project" },
  25. "System.Reactive.Core": { "target": "project" }
  26. },
  27. "frameworks": {
  28. "net45": {
  29. "buildOptions": {
  30. "define": [
  31. "NO_EVENTARGS_CONSTRAINT",
  32. "HAS_EDI",
  33. "HAS_WINRT",
  34. "HAS_PROGRESS",
  35. "PREFER_ASYNC",
  36. "HAS_AWAIT",
  37. "HAS_APTCA",
  38. "HAS_DISPATCHER_PRIORITY",
  39. "HAS_WINFORMS",
  40. "USE_TIMER_SELF_ROOT",
  41. "DESKTOPCLR",
  42. "DESKTOPCLR45"
  43. ]
  44. },
  45. "frameworkAssemblies": {
  46. "System.Windows": "",
  47. "System.Windows.Forms": "",
  48. "WindowsBase": ""
  49. }
  50. },
  51. "net46": {
  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_TPL46",
  63. "HAS_WINFORMS",
  64. "USE_TIMER_SELF_ROOT",
  65. "DESKTOPCLR",
  66. "DESKTOPCLR46"
  67. ]
  68. },
  69. "frameworkAssemblies": {
  70. "System.Windows": "",
  71. "System.Windows.Forms": "",
  72. "WindowsBase": ""
  73. }
  74. }
  75. }
  76. }