project.json 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. },
  63. "net461": {
  64. "buildOptions": {
  65. "define": [
  66. "NO_EVENTARGS_CONSTRAINT",
  67. "HAS_EDI",
  68. "HAS_WINRT",
  69. "HAS_PROGRESS",
  70. "PREFER_ASYNC",
  71. "HAS_AWAIT",
  72. "HAS_APTCA",
  73. "NO_REMOTING",
  74. "NO_SERIALIZABLE",
  75. "NO_THREAD",
  76. "CRIPPLED_REFLECTION",
  77. "USE_TIMER_SELF_ROOT",
  78. "DESKTOPCLR",
  79. "DESKTOPCLR46"
  80. ]
  81. },
  82. "dependencies": {
  83. "System.Reactive.Windows.Threading": { "target": "project" },
  84. "System.Reactive.Windows.Forms": { "target": "project" },
  85. "System.Reactive.Runtime.Remoting": { "target": "project" }
  86. },
  87. "frameworkAssemblies": {
  88. "System.Threading.Tasks": "4.0.10.0"
  89. }
  90. }
  91. }
  92. }