project.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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.Linq": { "target": "project" }
  14. },
  15. "frameworks": {
  16. "dotnet5.1": {
  17. "compilationOptions": {
  18. "define": [
  19. "NO_EVENTARGS_CONSTRAINT",
  20. "HAS_EDI",
  21. "HAS_WINRT",
  22. "HAS_PROGRESS",
  23. "PREFER_ASYNC",
  24. "HAS_AWAIT",
  25. "NO_REMOTING",
  26. "NO_SERIALIZABLE",
  27. "NO_THREAD",
  28. "CRIPPLED_REFLECTION",
  29. "USE_TIMER_SELF_ROOT"
  30. ]
  31. },
  32. "dependencies": {
  33. "Microsoft.NETCore.Portable.Compatibility": {
  34. "version": "1.0.0",
  35. "type": "build"
  36. },
  37. "Microsoft.TargetingPack.Private.WinRT": {
  38. "version": "1.0.1",
  39. "type": "build"
  40. },
  41. "System.Runtime": "4.0.0",
  42. "System.Threading.Tasks": "4.0.0",
  43. "System.Runtime.WindowsRuntime": "4.0.10"
  44. }
  45. }
  46. }
  47. }