project.json 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. {
  2. "version": "3.0.0-*",
  3. "title": "Reactive Extensions - Query Library",
  4. "description": "Reactive Extensions Query Library used to express complex event processing queries over observable sequences.",
  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. "exclude": [
  13. "*/**/ImmutableList.cs",
  14. "Reactive/Observer.Extensions.cs",
  15. "Reactive/Internal/Observers.cs",
  16. "Reactive/Internal/Producer.cs"
  17. ],
  18. "dependencies": {
  19. "System.Reactive.Core": { "target": "project" }
  20. },
  21. "frameworks": {
  22. "net40": {
  23. "compilationOptions": {
  24. "define": [
  25. "NO_TASK_DELAY",
  26. "HAS_APTCA",
  27. "HAS_WINFORMS",
  28. "USE_TIMER_SELF_ROOT",
  29. "NO_WEAKREFOFT"
  30. ]
  31. }
  32. },
  33. "net45": {
  34. "compilationOptions": {
  35. "define": [
  36. "NO_EVENTARGS_CONSTRAINT",
  37. "HAS_EDI",
  38. "HAS_WINRT",
  39. "HAS_PROGRESS",
  40. "PREFER_ASYNC",
  41. "HAS_AWAIT",
  42. "HAS_APTCA",
  43. "HAS_DISPATCHER_PRIORITY",
  44. "HAS_WINFORMS",
  45. "USE_TIMER_SELF_ROOT"
  46. ]
  47. }
  48. },
  49. "dotnet5.4": {
  50. "compilationOptions": {
  51. "define": [
  52. "NO_EVENTARGS_CONSTRAINT",
  53. "HAS_EDI",
  54. "HAS_WINRT",
  55. "HAS_PROGRESS",
  56. "PREFER_ASYNC",
  57. "HAS_AWAIT",
  58. "HAS_APTCA",
  59. "NO_REMOTING",
  60. "NO_SERIALIZABLE",
  61. "NO_THREAD",
  62. "CRIPPLED_REFLECTION",
  63. "PLIB",
  64. "USE_TIMER_SELF_ROOT"
  65. ]
  66. },
  67. "dependencies": {
  68. "System.Collections.Concurrent": "4.0.11-beta-23516",
  69. "System.Reflection.TypeExtensions": "4.1.0-beta-23516",
  70. "System.Runtime.InteropServices.WindowsRuntime": "4.0.1-beta-23516"
  71. }
  72. }
  73. }
  74. }