project.json 3.3 KB

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