1
0

project.json 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. "dependencies": {
  13. "System.Reactive.Interfaces": { "target": "project" }
  14. },
  15. "frameworks": {
  16. "net40": {
  17. "compilationOptions": {
  18. "define": [
  19. "NO_TASK_DELAY",
  20. "HAS_APTCA",
  21. "HAS_WINFORMS",
  22. "USE_TIMER_SELF_ROOT",
  23. "NO_WEAKREFOFT"
  24. ]
  25. }
  26. },
  27. "net45": {
  28. "compilationOptions": {
  29. "define": [
  30. "NO_EVENTARGS_CONSTRAINT",
  31. "HAS_EDI",
  32. "HAS_WINRT",
  33. "HAS_PROGRESS",
  34. "PREFER_ASYNC",
  35. "HAS_AWAIT",
  36. "HAS_APTCA",
  37. "HAS_DISPATCHER_PRIORITY",
  38. "HAS_WINFORMS",
  39. "USE_TIMER_SELF_ROOT"
  40. ]
  41. }
  42. },
  43. "dotnet5.4": {
  44. "compilationOptions": {
  45. "define": [
  46. "NO_EVENTARGS_CONSTRAINT",
  47. "HAS_EDI",
  48. "HAS_WINRT",
  49. "HAS_PROGRESS",
  50. "PREFER_ASYNC",
  51. "HAS_AWAIT",
  52. "HAS_APTCA",
  53. "NO_REMOTING",
  54. "NO_SERIALIZABLE",
  55. "NO_THREAD",
  56. "CRIPPLED_REFLECTION",
  57. "PLIB",
  58. "USE_TIMER_SELF_ROOT"
  59. ]
  60. },
  61. "dependencies": {
  62. "System.Collections.Concurrent": "4.0.11-beta-23516",
  63. "System.ComponentModel": "4.0.1-beta-23516",
  64. "System.Linq": "4.0.1-beta-23516",
  65. "System.Threading": "4.0.11-beta-23516",
  66. "System.Threading.Thread": "4.0.0-beta-23516",
  67. "System.Threading.ThreadPool": "4.0.10-beta-23516",
  68. "System.Threading.Timer": "4.0.1-beta-23516"
  69. }
  70. }
  71. }
  72. }