project.json 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. {
  2. "version": "3.0.0-*",
  3. "title": "Reactive Extensions - Experimental Library",
  4. "description": "Reactive Extensions Experimental Library containing unstable and infrequently used functionality.",
  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. "dependencies": {
  13. "System.Reactive.Interfaces": { "target": "project" },
  14. "System.Reactive.Core": { "target": "project" },
  15. "System.Reactive.Linq": { "target": "project" }
  16. },
  17. "frameworks": {
  18. "net40": {
  19. "compilationOptions": {
  20. "define": [
  21. "NO_TASK_DELAY",
  22. "HAS_APTCA",
  23. "HAS_WINFORMS",
  24. "USE_TIMER_SELF_ROOT",
  25. "NO_WEAKREFOFT"
  26. ]
  27. }
  28. },
  29. "net45": {
  30. "compilationOptions": {
  31. "define": [
  32. "NO_EVENTARGS_CONSTRAINT",
  33. "HAS_EDI",
  34. "HAS_WINRT",
  35. "HAS_PROGRESS",
  36. "PREFER_ASYNC",
  37. "HAS_AWAIT",
  38. "HAS_APTCA",
  39. "HAS_DISPATCHER_PRIORITY",
  40. "HAS_WINFORMS",
  41. "USE_TIMER_SELF_ROOT"
  42. ]
  43. }
  44. },
  45. "dotnet5.4": {
  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. "PLIB",
  60. "USE_TIMER_SELF_ROOT"
  61. ]
  62. },
  63. "dependencies": {
  64. "System.Collections.Concurrent": "4.0.11-beta-23516",
  65. "System.ComponentModel": "4.0.1-beta-23516",
  66. "System.Linq": "4.0.1-beta-23516",
  67. "System.Threading": "4.0.11-beta-23516",
  68. "System.Threading.Thread": "4.0.0-beta-23516",
  69. "System.Threading.ThreadPool": "4.0.10-beta-23516",
  70. "System.Threading.Timer": "4.0.1-beta-23516"
  71. }
  72. }
  73. }
  74. }