project.json 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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. "packOptions": {
  8. "tags": ["Rx", "Reactive", "Extensions", "Observable", "LINQ", "Events"],
  9. "iconUrl": "http://go.microsoft.com/fwlink/?LinkId=261274",
  10. "projectUrl": "http://go.microsoft.com/fwlink/?LinkId=261273",
  11. "licenseUrl": "http://go.microsoft.com/fwlink/?LinkID=261272",
  12. "requireLicenseAcceptance": true
  13. },
  14. "buildOptions": {
  15. "nowarn": ["CS0618"],
  16. "keyFile": "../35MSSharedLib1024.snk",
  17. "publicSign": true,
  18. "define": ["SIGNED"]
  19. },
  20. "configurations": {
  21. "ReleaseDelaySigned": {
  22. "compibuildOptionslationOptions": {
  23. "publicSign": false,
  24. "delaySign": true,
  25. "define": ["RELEASE", "TRACE"],
  26. "optimize": true
  27. }
  28. }
  29. },
  30. "dependencies": {
  31. "System.Reactive.Interfaces": { "target": "project" },
  32. "System.Reactive.Linq": { "target": "project" },
  33. "System.Reactive.PlatformServices": { "target": "project" },
  34. "Microsoft.Reactive.Testing": { "target": "project" },
  35. "System.Reactive.Experimental": { "target": "project" },
  36. "System.Reactive.Providers": { "target": "project" },
  37. "System.Reactive.Observable.Aliases": { "target": "project" },
  38. "xunit": "2.1.0",
  39. "dotnet-test-xunit": "1.0.0-rc2-*"
  40. },
  41. "testRunner": "xunit",
  42. "frameworks": {
  43. "netcoreapp1.0": {
  44. "imports": [ "dnxcore50", "portable-net45+win8" ],
  45. "buildOptions": {
  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. },
  62. "dependencies": {
  63. "Microsoft.NETCore.App": {
  64. "version": "1.0.0-rc2-3002702",
  65. "type": "platform"
  66. }
  67. }
  68. },
  69. "net461": {
  70. "buildOptions": {
  71. "define": [
  72. "NO_EVENTARGS_CONSTRAINT",
  73. "HAS_EDI",
  74. "HAS_WINRT",
  75. "HAS_PROGRESS",
  76. "PREFER_ASYNC",
  77. "HAS_AWAIT",
  78. "HAS_APTCA",
  79. "NO_REMOTING",
  80. "NO_SERIALIZABLE",
  81. "NO_THREAD",
  82. "CRIPPLED_REFLECTION",
  83. "USE_TIMER_SELF_ROOT",
  84. "DESKTOPCLR",
  85. "DESKTOPCLR46"
  86. ]
  87. },
  88. "dependencies": {
  89. "System.Reactive.Windows.Threading": { "target": "project" },
  90. "System.Reactive.Windows.Forms": { "target": "project" },
  91. "System.Reactive.Runtime.Remoting": { "target": "project" }
  92. },
  93. "frameworkAssemblies": {
  94. "System.Threading.Tasks": ""
  95. }
  96. }
  97. }
  98. }