project.json 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. {
  2. "version": "3.0.0-*",
  3. "title": "Reactive Extensions - Tests",
  4. "description": "Reactive Extensions test project.",
  5. "authors": ["Microsoft"],
  6. "copyright": "Copyright (C) Microsoft Corporation",
  7. "packOptions": {
  8. "tags": [],
  9. "iconUrl": "http://go.microsoft.com/fwlink/?LinkId=261274",
  10. "projectUrl": "http://go.microsoft.com/fwlink/?LinkId=261273",
  11. "licenseUrl": "http://go.microsoft.com/fwlink/?LinkID=261272",
  12. "requireLicenseAcceptance": true
  13. },
  14. "buildOptions": {
  15. "nowarn": [ "CS0618" ],
  16. "keyFile": "../ReactiveX.snk",
  17. "define": [ "SIGNED" ],
  18. "copyToOutput": {
  19. "include": [ "xunit.runner.json" ]
  20. }
  21. },
  22. "dependencies": {
  23. "System.Reactive.Interfaces": { "target": "project" },
  24. "System.Reactive.Linq": { "target": "project" },
  25. "System.Reactive.PlatformServices": { "target": "project" },
  26. "Microsoft.Reactive.Testing": { "target": "project" },
  27. "System.Reactive.Experimental": { "target": "project" },
  28. "System.Reactive.Providers": { "target": "project" },
  29. "System.Reactive.Observable.Aliases": { "target": "project" },
  30. "xunit": "2.2.0-beta3-build3342",
  31. "xunit.runner.reporters": "2.2.0-beta3-build3342",
  32. "dotnet-test-xunit": "2.2.0-preview3-build1038",
  33. "System.Reflection.TypeExtensions": "4.1.0",
  34. "System.Diagnostics.StackTrace": "4.0.1"
  35. },
  36. "testRunner": "xunit",
  37. "frameworks": {
  38. //"netcoreapp1.0": {
  39. // "buildOptions": {
  40. // "define": [
  41. // "NO_EVENTARGS_CONSTRAINT",
  42. // "HAS_EDI",
  43. // "HAS_WINRT",
  44. // "HAS_PROGRESS",
  45. // "PREFER_ASYNC",
  46. // "HAS_AWAIT",
  47. // "HAS_APTCA",
  48. // "NO_REMOTING",
  49. // "NO_SERIALIZABLE",
  50. // "CRIPPLED_REFLECTION",
  51. // "PLIB",
  52. // "USE_TIMER_SELF_ROOT",
  53. // "XUNIT"
  54. // ]
  55. // },
  56. // "dependencies": {
  57. // "Microsoft.NETCore.App": {
  58. // "version": "1.0.0",
  59. // "type": "platform"
  60. // }
  61. // }
  62. //},
  63. "net461": {
  64. "buildOptions": {
  65. "define": [
  66. "NO_EVENTARGS_CONSTRAINT",
  67. "HAS_EDI",
  68. "HAS_WINRT",
  69. "HAS_PROGRESS",
  70. "PREFER_ASYNC",
  71. "HAS_AWAIT",
  72. "HAS_APTCA",
  73. "USE_TIMER_SELF_ROOT",
  74. "DESKTOPCLR",
  75. "DESKTOPCLR46",
  76. "XUNIT"
  77. ]
  78. },
  79. "dependencies": {
  80. "System.Reactive.Windows.Threading": { "target": "project" },
  81. "System.Reactive.Windows.Forms": { "target": "project" },
  82. "System.Reactive.Runtime.Remoting": { "target": "project" }
  83. },
  84. "frameworkAssemblies": {
  85. "System.Threading.Tasks": ""
  86. }
  87. }
  88. }
  89. }