project.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. "tags": [ "Rx", "Reactive", "Extensions", "Observable", "LINQ", "Events" ],
  8. "iconUrl": "http://go.microsoft.com/fwlink/?LinkId=261274",
  9. "projectUrl": "http://go.microsoft.com/fwlink/?LinkId=261273",
  10. "licenseUrl": "http://go.microsoft.com/fwlink/?LinkID=261272",
  11. "requireLicenseAcceptance": true,
  12. "dependencies": {
  13. "System.Reactive.Interfaces": { "target": "project" },
  14. "System.Reactive.Core": { "target": "project" }
  15. },
  16. "frameworks": {
  17. "net40": {
  18. "compilationOptions": {
  19. "define": [
  20. "NO_TASK_DELAY",
  21. "HAS_APTCA",
  22. "HAS_WINFORMS",
  23. "USE_TIMER_SELF_ROOT",
  24. "NO_WEAKREFOFT"
  25. ]
  26. },
  27. "frameworkAssemblies": {
  28. "System.Windows.Forms": "4.0.0.0",
  29. "WindowsBase": "4.0.0.0"
  30. }
  31. },
  32. "net45": {
  33. "compilationOptions": {
  34. "define": [
  35. "NO_EVENTARGS_CONSTRAINT",
  36. "HAS_EDI",
  37. "HAS_WINRT",
  38. "HAS_PROGRESS",
  39. "PREFER_ASYNC",
  40. "HAS_AWAIT",
  41. "HAS_APTCA",
  42. "HAS_DISPATCHER_PRIORITY",
  43. "HAS_WINFORMS",
  44. "USE_TIMER_SELF_ROOT"
  45. ]
  46. },
  47. "frameworkAssemblies": {
  48. "System.Windows": "4.0.0.0",
  49. "System.Windows.Forms": "4.0.0.0",
  50. "WindowsBase": "4.0.0.0"
  51. }
  52. }
  53. }
  54. }