project.json 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. {
  2. "version": "3.0.0-*",
  3. "title": "Microsoft.Reactive.Testing - Testing Helper Library",
  4. "description": "Reactive Extensions Testing Library containing interfaces and classes providing functionality to test applications and libraries built using Reactive Extensions.",
  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.Linq": { "target": "project" },
  14. "System.Reactive.PlatformServices": { "target": "project" },
  15. "xunit": "2.1.0"
  16. },
  17. "frameworks": {
  18. "net45": {
  19. "compilationOptions": {
  20. "define": [
  21. "NO_EVENTARGS_CONSTRAINT",
  22. "HAS_EDI",
  23. "HAS_WINRT",
  24. "HAS_PROGRESS",
  25. "PREFER_ASYNC",
  26. "HAS_AWAIT",
  27. "HAS_APTCA",
  28. "HAS_DISPATCHER_PRIORITY",
  29. "HAS_WINFORMS",
  30. "USE_TIMER_SELF_ROOT"
  31. ]
  32. },
  33. "frameworkAssemblies": {
  34. "System.Runtime": "4.0.0.0"
  35. }
  36. },
  37. "dotnet5.1": {
  38. "compilationOptions": {
  39. "define": [
  40. "NO_EVENTARGS_CONSTRAINT",
  41. "HAS_EDI",
  42. "HAS_WINRT",
  43. "HAS_PROGRESS",
  44. "PREFER_ASYNC",
  45. "HAS_AWAIT",
  46. "HAS_APTCA",
  47. "NO_REMOTING",
  48. "NO_SERIALIZABLE",
  49. "NO_THREAD",
  50. "NO_WEAKTABLE",
  51. "CRIPPLED_REFLECTION",
  52. "PLIB",
  53. "USE_TIMER_SELF_ROOT"
  54. ]
  55. },
  56. "dependencies": {
  57. "System.Linq": "4.0.0",
  58. "System.Collections.Concurrent": "4.0.0",
  59. "System.ComponentModel": "4.0.0",
  60. "System.Threading": "4.0.0",
  61. "System.Threading.Timer": "4.0.0",
  62. "System.Runtime": "4.0.0",
  63. "System.Runtime.Extensions": "4.0.0"
  64. }
  65. },
  66. "dotnet5.4": {
  67. "compilationOptions": {
  68. "define": [
  69. "NO_EVENTARGS_CONSTRAINT",
  70. "HAS_EDI",
  71. "HAS_WINRT",
  72. "HAS_PROGRESS",
  73. "PREFER_ASYNC",
  74. "HAS_AWAIT",
  75. "HAS_APTCA",
  76. "NO_REMOTING",
  77. "NO_SERIALIZABLE",
  78. "NO_THREAD",
  79. "CRIPPLED_REFLECTION",
  80. "PLIB",
  81. "USE_TIMER_SELF_ROOT"
  82. ]
  83. },
  84. "dependencies": {
  85. "System.Diagnostics.Tools": "4.0.1-beta-23516",
  86. "System.Linq": "4.0.1-beta-23516",
  87. "System.Linq.Expressions": "4.0.11-beta-23516",
  88. "System.Resources.ResourceManager": "4.0.1-beta-23516",
  89. "System.Threading": "4.0.11-beta-23516",
  90. "System.Runtime": "4.0.21-beta-23516"
  91. }
  92. }
  93. }
  94. }