project.json 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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_STACKTRACE",
  39. "HAS_WINFORMS",
  40. "USE_TIMER_SELF_ROOT"
  41. ]
  42. },
  43. "dependencies": {
  44. "System.Reactive.Windows.Threading": { "target": "project" },
  45. "System.Reactive.Windows.Forms": { "target": "project" },
  46. "System.Reactive.Runtime.Remoting": { "target": "project" }
  47. },
  48. "frameworkAssemblies": {
  49. "System.Windows": "4.0.0.0",
  50. "WindowsBase": "4.0.0.0",
  51. "System.Runtime": "4.0.0.0",
  52. "System.Threading.Tasks": "4.0.0.0"
  53. }
  54. },
  55. "dnx51": {
  56. "compilationOptions": {
  57. "define": [
  58. "NO_EVENTARGS_CONSTRAINT",
  59. "HAS_EDI",
  60. "HAS_WINRT",
  61. "HAS_PROGRESS",
  62. "PREFER_ASYNC",
  63. "HAS_AWAIT",
  64. "HAS_APTCA",
  65. "NO_REMOTING",
  66. "NO_SERIALIZABLE",
  67. "NO_THREAD",
  68. "CRIPPLED_REFLECTION",
  69. "PLIB",
  70. "USE_TIMER_SELF_ROOT"
  71. ]
  72. },
  73. "dependencies": {
  74. "System.Collections.Concurrent": "4.0.0",
  75. "System.Linq": "4.0.0",
  76. "System.Threading": "4.0.0",
  77. "System.Threading.Tasks": "4.0.0",
  78. "System.Threading.Timer": "4.0.0",
  79. "System.Runtime": "4.0.0",
  80. "System.Runtime.Extensions": "4.0.0",
  81. "System.Reflection": "4.0.0",
  82. "System.Reflection.Extensions": "4.0.0"
  83. }
  84. }
  85. }
  86. }