project.json 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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. "compilationOptions": {
  13. "emitEntryPoint": true,
  14. "nowarn": ["CS0618"]
  15. },
  16. "dependencies": {
  17. "System.Reactive.Interfaces": { "target": "project" },
  18. "System.Reactive.Linq": { "target": "project" },
  19. "System.Reactive.PlatformServices": { "target": "project" },
  20. "Microsoft.Reactive.Testing": { "target": "project" },
  21. "System.Reactive.Experimental": { "target": "project" },
  22. "System.Reactive.Providers": { "target": "project" },
  23. "System.Reactive.Observable.Aliases": { "target": "project" },
  24. "xunit": "2.1.0",
  25. "NETStandard.Library": "1.0.0-rc2-23811"
  26. },
  27. "testRunner": "xunit",
  28. "frameworks": {
  29. "netstandardapp1.5": {
  30. "imports": [ "dnxcore50", "portable-net45+win8" ],
  31. "compilationOptions": {
  32. "define": [
  33. "NO_EVENTARGS_CONSTRAINT",
  34. "HAS_EDI",
  35. "HAS_WINRT",
  36. "HAS_PROGRESS",
  37. "PREFER_ASYNC",
  38. "HAS_AWAIT",
  39. "HAS_APTCA",
  40. "NO_REMOTING",
  41. "NO_SERIALIZABLE",
  42. "NO_THREAD",
  43. "CRIPPLED_REFLECTION",
  44. "PLIB",
  45. "USE_TIMER_SELF_ROOT"
  46. ],
  47. "debugType": "full"
  48. },
  49. "dependencies": {
  50. "dotnet-test-xunit": "1.0.0-dev-79755-47"
  51. }
  52. },
  53. "net461": {
  54. "compilationOptions": {
  55. "define": [
  56. "NO_EVENTARGS_CONSTRAINT",
  57. "HAS_EDI",
  58. "HAS_WINRT",
  59. "HAS_PROGRESS",
  60. "PREFER_ASYNC",
  61. "HAS_AWAIT",
  62. "HAS_APTCA",
  63. "NO_REMOTING",
  64. "NO_SERIALIZABLE",
  65. "NO_THREAD",
  66. "CRIPPLED_REFLECTION",
  67. "USE_TIMER_SELF_ROOT",
  68. "DESKTOPCLR",
  69. "DESKTOPCLR46"
  70. ]
  71. },
  72. "dependencies": {
  73. "System.Reactive.Windows.Threading": { "target": "project" },
  74. "System.Reactive.Windows.Forms": { "target": "project" },
  75. "System.Reactive.Runtime.Remoting": { "target": "project" }
  76. },
  77. "frameworkAssemblies": {
  78. "System.Threading.Tasks": "4.0.10.0"
  79. }
  80. }
  81. }
  82. }