project.json 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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.5.0-rc2-23911",
  26. "System.Reflection.TypeExtensions": "4.1.0-rc2-23911"
  27. },
  28. "testRunner": "xunit",
  29. "frameworks": {
  30. "netstandardapp1.5": {
  31. "imports": [ "dnxcore50", "portable-net45+win8" ],
  32. "compilationOptions": {
  33. "define": [
  34. "NO_EVENTARGS_CONSTRAINT",
  35. "HAS_EDI",
  36. "HAS_WINRT",
  37. "HAS_PROGRESS",
  38. "PREFER_ASYNC",
  39. "HAS_AWAIT",
  40. "HAS_APTCA",
  41. "NO_REMOTING",
  42. "NO_SERIALIZABLE",
  43. "NO_THREAD",
  44. "CRIPPLED_REFLECTION",
  45. "PLIB",
  46. "USE_TIMER_SELF_ROOT"
  47. ],
  48. "debugType": "full"
  49. },
  50. "dependencies": {
  51. "dotnet-test-xunit": "1.0.0-dev-91790-12"
  52. }
  53. },
  54. "net461": {
  55. "compilationOptions": {
  56. "define": [
  57. "NO_EVENTARGS_CONSTRAINT",
  58. "HAS_EDI",
  59. "HAS_WINRT",
  60. "HAS_PROGRESS",
  61. "PREFER_ASYNC",
  62. "HAS_AWAIT",
  63. "HAS_APTCA",
  64. "NO_REMOTING",
  65. "NO_SERIALIZABLE",
  66. "NO_THREAD",
  67. "CRIPPLED_REFLECTION",
  68. "USE_TIMER_SELF_ROOT",
  69. "DESKTOPCLR",
  70. "DESKTOPCLR46"
  71. ]
  72. },
  73. "dependencies": {
  74. "System.Reactive.Windows.Threading": { "target": "project" },
  75. "System.Reactive.Windows.Forms": { "target": "project" },
  76. "System.Reactive.Runtime.Remoting": { "target": "project" }
  77. },
  78. "frameworkAssemblies": {
  79. "System.Threading.Tasks": "4.0.10.0"
  80. }
  81. }
  82. },
  83. "userSecretsId": "aspnet5-Tests.System.Reactive-20160315032508"
  84. }