project.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. "System.Reactive.Linq": { "target": "project" }
  16. },
  17. "frameworks": {
  18. "uap10.0": {
  19. "compilationOptions": {
  20. "define": [
  21. "NO_EVENTARGS_CONSTRAINT",
  22. "HAS_EDI",
  23. "HAS_WINRT",
  24. "HAS_PROGRESS",
  25. "PREFER_ASYNC",
  26. "HAS_AWAIT",
  27. "NO_REMOTING",
  28. "NO_SERIALIZABLE",
  29. "NO_THREAD",
  30. "CRIPPLED_REFLECTION",
  31. "USE_TIMER_SELF_ROOT"
  32. ]
  33. },
  34. "dependencies": {
  35. "Microsoft.NETCore.UniversalWindowsPlatform": "5.0.0",
  36. "Microsoft.TargetingPack.Private.WinRT": "1.0.1",
  37. "System.Runtime": "4.0.20",
  38. "System.Threading.Tasks": "4.0.10"
  39. }
  40. }
  41. }
  42. }