project.json 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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. "xunit.runner.dnx": "2.1.0-rc1-build204"
  22. },
  23. "commands": {
  24. "test": "xunit.runner.dnx"
  25. },
  26. "frameworks": {
  27. "dnx451": {
  28. "compilationOptions": {
  29. "define": [
  30. "NO_EVENTARGS_CONSTRAINT",
  31. "NO_REMOTING",
  32. "HAS_EDI",
  33. "HAS_WINRT",
  34. "HAS_PROGRESS",
  35. "PREFER_ASYNC",
  36. "HAS_AWAIT",
  37. "HAS_APTCA",
  38. "HAS_DISPATCHER",
  39. "HAS_DISPATCHER_PRIORITY",
  40. "HAS_STACKTRACE",
  41. "HAS_WINFORMS",
  42. "USE_TIMER_SELF_ROOT"
  43. ]
  44. },
  45. "dependencies": {
  46. "System.Reactive.Windows.Threading": { "target": "project" },
  47. "System.Reactive.Windows.Forms": { "target": "project" },
  48. "System.Reactive.Runtime.Remoting": { "target": "project" }
  49. },
  50. "frameworkAssemblies": {
  51. "System.Windows": "4.0.0.0",
  52. "WindowsBase": "4.0.0.0",
  53. "System.Runtime": "4.0.0.0",
  54. "System.Threading.Tasks": "4.0.0.0"
  55. }
  56. },
  57. "dnx51": {
  58. "compilationOptions": {
  59. "define": [
  60. "NO_EVENTARGS_CONSTRAINT",
  61. "HAS_EDI",
  62. "HAS_WINRT",
  63. "HAS_PROGRESS",
  64. "PREFER_ASYNC",
  65. "HAS_AWAIT",
  66. "HAS_APTCA",
  67. "NO_REMOTING",
  68. "NO_SERIALIZABLE",
  69. "NO_THREAD",
  70. "CRIPPLED_REFLECTION",
  71. "PLIB",
  72. "USE_TIMER_SELF_ROOT"
  73. ]
  74. },
  75. "dependencies": {
  76. "System.Collections.Concurrent": "4.0.0",
  77. "System.Linq": "4.0.0",
  78. "System.Threading": "4.0.0",
  79. "System.Threading.Tasks": "4.0.0",
  80. "System.Threading.Timer": "4.0.0",
  81. "System.Runtime": "4.0.0",
  82. "System.Runtime.Extensions": "4.0.0",
  83. "System.Reflection": "4.0.0",
  84. "System.Reflection.Extensions": "4.0.0"
  85. }
  86. }
  87. }
  88. }