project.json 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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. "keyFile": "../35MSSharedLib1024.snk",
  16. "publicSign": true,
  17. "define": [ "SIGNED" ]
  18. },
  19. "configurations": {
  20. "ReleaseDelaySigned": {
  21. "compilationOptions": {
  22. "publicSign": false,
  23. "delaySign": true,
  24. "define": [ "RELEASE", "TRACE" ],
  25. "optimize": true
  26. }
  27. }
  28. },
  29. "dependencies": {
  30. "System.Reactive.Interfaces": { "target": "project" },
  31. "System.Reactive.Linq": { "target": "project" },
  32. "System.Reactive.PlatformServices": { "target": "project" },
  33. "Microsoft.Reactive.Testing": { "target": "project" },
  34. "System.Reactive.Experimental": { "target": "project" },
  35. "System.Reactive.Providers": { "target": "project" },
  36. "System.Reactive.Observable.Aliases": { "target": "project" },
  37. "xunit": "2.1.0",
  38. "NETStandard.Library": "1.5.0-rc2-23911",
  39. "System.Reflection.TypeExtensions": "4.1.0-rc2-23911"
  40. },
  41. "testRunner": "xunit",
  42. "frameworks": {
  43. "netstandardapp1.5": {
  44. "imports": [ "dnxcore50", "portable-net45+win8" ],
  45. "compilationOptions": {
  46. "define": [
  47. "NO_EVENTARGS_CONSTRAINT",
  48. "HAS_EDI",
  49. "HAS_WINRT",
  50. "HAS_PROGRESS",
  51. "PREFER_ASYNC",
  52. "HAS_AWAIT",
  53. "HAS_APTCA",
  54. "NO_REMOTING",
  55. "NO_SERIALIZABLE",
  56. "NO_THREAD",
  57. "CRIPPLED_REFLECTION",
  58. "PLIB",
  59. "USE_TIMER_SELF_ROOT"
  60. ],
  61. "debugType": "full"
  62. },
  63. "dependencies": {
  64. "dotnet-test-xunit": "1.0.0-dev-91790-12"
  65. }
  66. },
  67. "net461": {
  68. "compilationOptions": {
  69. "define": [
  70. "NO_EVENTARGS_CONSTRAINT",
  71. "HAS_EDI",
  72. "HAS_WINRT",
  73. "HAS_PROGRESS",
  74. "PREFER_ASYNC",
  75. "HAS_AWAIT",
  76. "HAS_APTCA",
  77. "NO_REMOTING",
  78. "NO_SERIALIZABLE",
  79. "NO_THREAD",
  80. "CRIPPLED_REFLECTION",
  81. "USE_TIMER_SELF_ROOT",
  82. "DESKTOPCLR",
  83. "DESKTOPCLR46"
  84. ]
  85. },
  86. "dependencies": {
  87. "System.Reactive.Windows.Threading": { "target": "project" },
  88. "System.Reactive.Windows.Forms": { "target": "project" },
  89. "System.Reactive.Runtime.Remoting": { "target": "project" }
  90. },
  91. "frameworkAssemblies": {
  92. "System.Threading.Tasks": "4.0.10.0"
  93. }
  94. }
  95. }
  96. }