project.json 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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-23929",
  39. "System.Reflection.TypeExtensions": "4.1.0-rc2-23929"
  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-128011-22",
  65. "System.Runtime.Serialization.Primitives": "4.1.1-rc2-23929"
  66. }
  67. },
  68. "net461": {
  69. "compilationOptions": {
  70. "define": [
  71. "NO_EVENTARGS_CONSTRAINT",
  72. "HAS_EDI",
  73. "HAS_WINRT",
  74. "HAS_PROGRESS",
  75. "PREFER_ASYNC",
  76. "HAS_AWAIT",
  77. "HAS_APTCA",
  78. "NO_REMOTING",
  79. "NO_SERIALIZABLE",
  80. "NO_THREAD",
  81. "CRIPPLED_REFLECTION",
  82. "USE_TIMER_SELF_ROOT",
  83. "DESKTOPCLR",
  84. "DESKTOPCLR46"
  85. ]
  86. },
  87. "dependencies": {
  88. "System.Reactive.Windows.Threading": { "target": "project" },
  89. "System.Reactive.Windows.Forms": { "target": "project" },
  90. "System.Reactive.Runtime.Remoting": { "target": "project" }
  91. },
  92. "frameworkAssemblies": {
  93. "System.Threading.Tasks": "4.0.10.0"
  94. }
  95. }
  96. }
  97. }