project.json 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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.2": {
  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.1-beta-23516",
  60. "System.Linq": "4.0.1-beta-23516",
  61. "System.Linq.Expressions": "4.0.11-beta-23516",
  62. "System.Resources.ResourceManager": "4.0.1-beta-23516",
  63. "System.Threading": "4.0.11-beta-23516"
  64. }
  65. }
  66. }
  67. }