project.json 3.3 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. "DESKTOPCLR",
  22. "DESKTOPCLR40"
  23. ]
  24. }
  25. },
  26. "net45": {
  27. "compilationOptions": {
  28. "define": [
  29. "NO_EVENTARGS_CONSTRAINT",
  30. "HAS_EDI",
  31. "HAS_WINRT",
  32. "HAS_PROGRESS",
  33. "PREFER_ASYNC",
  34. "HAS_AWAIT",
  35. "HAS_APTCA",
  36. "HAS_DISPATCHER_PRIORITY",
  37. "HAS_WINFORMS",
  38. "USE_TIMER_SELF_ROOT",
  39. "DESKTOPCLR",
  40. "DESKTOPCLR45"
  41. ]
  42. }
  43. },
  44. "netstandard1.0": {
  45. "imports": [ "dotnet5.1" ],
  46. "compilationOptions": {
  47. "define": [
  48. "NO_EVENTARGS_CONSTRAINT",
  49. "HAS_EDI",
  50. "HAS_WINRT",
  51. "HAS_PROGRESS",
  52. "PREFER_ASYNC",
  53. "HAS_AWAIT",
  54. "HAS_APTCA",
  55. "NO_REMOTING",
  56. "NO_SERIALIZABLE",
  57. "NO_THREAD",
  58. "CRIPPLED_REFLECTION",
  59. "NO_CDS_COLLECTIONS",
  60. "USE_TIMER_SELF_ROOT",
  61. "PLIB"
  62. ]
  63. },
  64. "dependencies": {
  65. "System.Diagnostics.Tools": "4.0.1-rc2-23911",
  66. "System.Linq": "4.0.1-rc2-23911",
  67. "System.Linq.Expressions": "4.0.11-rc2-23911",
  68. "System.Resources.ResourceManager": "4.0.1-rc2-23911",
  69. "System.Runtime": "4.1.0-rc2-23911",
  70. "System.Threading": "4.0.11-rc2-23911"
  71. }
  72. },
  73. "sl5": {
  74. "compilationOptions": {
  75. "define": [
  76. "NO_RXINTERFACES",
  77. "USE_SL_DISPATCHER",
  78. "NO_SERIALIZABLE",
  79. "NO_REMOTING",
  80. "NO_SEMAPHORE",
  81. "NO_STOPWATCH",
  82. "NO_CDS",
  83. "NO_TASK_DELAY",
  84. "NO_WEAKREFOFT",
  85. "NO_SORTEDDICTIONARY",
  86. "SILVERLIGHT",
  87. "SILVERLIGHT5"
  88. ]
  89. },
  90. "dependencies": {
  91. "Microsoft.TargetingPack.Private.Silverlight.v5": "1.0.2"
  92. }
  93. }
  94. }
  95. }