project.json 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. {
  2. "version": "2.0.0-*",
  3. "title": "Interactive Extensions - Providers Library",
  4. "description": "Interactive Extensions Providers Library used to build query providers and express queries over enumerable sequences.",
  5. "authors": [ "Microsoft" ],
  6. "copyright": "Copyright (C) Microsoft Corporation",
  7. "tags": [ "Ix", "Interactive", "Extensions", "Enumerable" ],
  8. "iconUrl": "http://go.microsoft.com/fwlink/?LinkId=261274",
  9. "projectUrl": "https://github.com/Reactive-Extensions/Rx.NET",
  10. "licenseUrl": "https://raw.githubusercontent.com/Reactive-Extensions/Rx.NET/master/Ix.NET/Source/license.txt",
  11. "requireLicenseAcceptance": true,
  12. "dependencies": {
  13. "System.Interactive": { "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.1": {
  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. "NO_WEAKTABLE",
  57. "CRIPPLED_REFLECTION",
  58. "PLIB",
  59. "USE_TIMER_SELF_ROOT"
  60. ]
  61. },
  62. "dependencies": {
  63. "System.Linq": "4.0.0",
  64. "System.Linq.Expressions": "4.0.0",
  65. "System.Linq.Queryable": "4.0.0",
  66. "System.Reflection": "4.0.0",
  67. "System.Runtime": "4.0.0",
  68. "System.Runtime.Extensions": "4.0.0"
  69. }
  70. },
  71. "dotnet5.4": {
  72. "compilationOptions": {
  73. "define": [
  74. "NO_EVENTARGS_CONSTRAINT",
  75. "HAS_EDI",
  76. "HAS_WINRT",
  77. "HAS_PROGRESS",
  78. "PREFER_ASYNC",
  79. "HAS_AWAIT",
  80. "HAS_APTCA",
  81. "NO_REMOTING",
  82. "NO_SERIALIZABLE",
  83. "NO_THREAD",
  84. "CRIPPLED_REFLECTION",
  85. "PLIB",
  86. "USE_TIMER_SELF_ROOT"
  87. ]
  88. },
  89. "dependencies": {
  90. "System.Linq": "4.0.1-beta-23516",
  91. "System.Linq.Expressions": "4.0.11-beta-23516",
  92. "System.Linq.Queryable": "4.0.1-beta-23516",
  93. "System.Reflection":"4.1.0-beta-23516"
  94. }
  95. }
  96. }
  97. }