project.json 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. {
  2. "version": "3.0.0-*",
  3. "title": "Reactive Extensions - Core Library",
  4. "description": "Reactive Extensions Core Library containing base classes and scheduler infrastructure.",
  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.Linq": { "target": "project" },
  15. "System.Reactive.PlatformServices": { "target": "project" },
  16. "Microsoft.Reactive.Testing": { "target": "project" },
  17. "System.Reactive.Experimental": { "target": "project" },
  18. "System.Reactive.Providers": { "target": "project" },
  19. "System.Reactive.Observable.Aliases": {"target": "project"},
  20. "xunit": "2.1.0"
  21. },
  22. "frameworks": {
  23. "net45": {
  24. "compilationOptions": {
  25. "define": [
  26. "NO_EVENTARGS_CONSTRAINT",
  27. "HAS_EDI",
  28. "HAS_WINRT",
  29. "HAS_PROGRESS",
  30. "PREFER_ASYNC",
  31. "HAS_AWAIT",
  32. "HAS_APTCA",
  33. "HAS_DISPATCHER",
  34. "HAS_DISPATCHER_PRIORITY",
  35. "HAS_STACKTRACE",
  36. "HAS_WINFORMS",
  37. "USE_TIMER_SELF_ROOT"
  38. ]
  39. },
  40. "dependencies": {
  41. "System.Reactive.Windows.Threading": { "target": "project" },
  42. "System.Reactive.Windows.Forms": { "target": "project" },
  43. "System.Reactive.Runtime.Remoting": { "target": "project" }
  44. },
  45. "frameworkAssemblies": {
  46. "System.Windows": "4.0.0.0",
  47. "WindowsBase": "4.0.0.0",
  48. "System.Runtime": "4.0.0.0",
  49. "System.Threading.Tasks": "4.0.0.0"
  50. }
  51. },
  52. "dotnet5.1": {
  53. "compilationOptions": {
  54. "define": [
  55. "NO_EVENTARGS_CONSTRAINT",
  56. "HAS_EDI",
  57. "HAS_WINRT",
  58. "HAS_PROGRESS",
  59. "PREFER_ASYNC",
  60. "HAS_AWAIT",
  61. "HAS_APTCA",
  62. "NO_DISPATCHER",
  63. "NO_REMOTING",
  64. "NO_SERIALIZABLE",
  65. "NO_THREAD",
  66. "CRIPPLED_REFLECTION",
  67. "PLIB",
  68. "USE_TIMER_SELF_ROOT"
  69. ]
  70. },
  71. "dependencies": {
  72. "System.Collections.Concurrent": "4.0.0",
  73. "System.Linq": "4.0.0",
  74. "System.Threading": "4.0.0",
  75. "System.Threading.Tasks": "4.0.0",
  76. "System.Threading.Timer": "4.0.0",
  77. "System.Runtime": "4.0.0",
  78. "System.Runtime.Extensions": "4.0.0",
  79. "System.Reflection": "4.0.0",
  80. "System.Reflection.Extensions": "4.0.0"
  81. }
  82. }
  83. }
  84. }