project.json 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. {
  2. "version": "3.0.0-*",
  3. "title": "Reactive Extensions - Interfaces Library",
  4. "description": "Reactive Extensions Interfaces Library containing essential interfaces.",
  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. "frameworks": {
  13. "net40": {
  14. "compilationOptions": {
  15. "define": [
  16. "NO_TASK_DELAY",
  17. "HAS_APTCA",
  18. "HAS_WINFORMS",
  19. "USE_TIMER_SELF_ROOT",
  20. "NO_WEAKREFOFT"
  21. ]
  22. }
  23. },
  24. "net45": {
  25. "compilationOptions": {
  26. "define": [
  27. "NO_EVENTARGS_CONSTRAINT",
  28. "HAS_EDI",
  29. "HAS_WINRT",
  30. "HAS_PROGRESS",
  31. "PREFER_ASYNC",
  32. "HAS_AWAIT",
  33. "HAS_APTCA",
  34. "HAS_DISPATCHER_PRIORITY",
  35. "HAS_WINFORMS",
  36. "USE_TIMER_SELF_ROOT"
  37. ]
  38. }
  39. },
  40. "dotnet5.1": {
  41. "compilationOptions": {
  42. "define": [
  43. "NO_EVENTARGS_CONSTRAINT",
  44. "HAS_EDI",
  45. "HAS_WINRT",
  46. "HAS_PROGRESS",
  47. "PREFER_ASYNC",
  48. "HAS_AWAIT",
  49. "HAS_APTCA",
  50. "NO_REMOTING",
  51. "NO_SERIALIZABLE",
  52. "NO_THREAD",
  53. "CRIPPLED_REFLECTION",
  54. "PLIB",
  55. "USE_TIMER_SELF_ROOT"
  56. ]
  57. },
  58. "dependencies": {
  59. "System.Diagnostics.Tools": "4.0.0",
  60. "System.Linq": "4.0.0",
  61. "System.Linq.Expressions": "4.0.0",
  62. "System.Resources.ResourceManager": "4.0.0",
  63. "System.Threading": "4.0.0",
  64. "System.Runtime": "4.0.0"
  65. }
  66. },
  67. "dotnet5.2": {
  68. "compilationOptions": {
  69. "define": [
  70. "NO_EVENTARGS_CONSTRAINT",
  71. "HAS_EDI",
  72. "HAS_WINRT",
  73. "HAS_PROGRESS",
  74. "PREFER_ASYNC",
  75. "HAS_AWAIT",
  76. "HAS_APTCA",
  77. "NO_REMOTING",
  78. "NO_SERIALIZABLE",
  79. "NO_THREAD",
  80. "CRIPPLED_REFLECTION",
  81. "PLIB",
  82. "USE_TIMER_SELF_ROOT"
  83. ]
  84. },
  85. "dependencies": {
  86. "System.Diagnostics.Tools": "4.0.1-beta-23516",
  87. "System.Linq": "4.0.1-beta-23516",
  88. "System.Linq.Expressions": "4.0.11-beta-23516",
  89. "System.Resources.ResourceManager": "4.0.1-beta-23516",
  90. "System.Threading": "4.0.11-beta-23516"
  91. }
  92. }
  93. }
  94. }