project.json 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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. "dotnet-test-xunit": "2.2.0-preview3-build1039",
  32. "System.Reflection.TypeExtensions": "4.1.0",
  33. "System.Diagnostics.StackTrace": "4.0.1"
  34. },
  35. "testRunner": "xunit",
  36. "frameworks": {
  37. "netcoreapp1.0": {
  38. "buildOptions": {
  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. "CRIPPLED_REFLECTION",
  50. "PLIB",
  51. "USE_TIMER_SELF_ROOT",
  52. "XUNIT"
  53. ]
  54. },
  55. "dependencies": {
  56. "Microsoft.NETCore.App": {
  57. "version": "1.0.0",
  58. "type": "platform"
  59. }
  60. }
  61. },
  62. "net461": {
  63. "buildOptions": {
  64. "define": [
  65. "NO_EVENTARGS_CONSTRAINT",
  66. "HAS_EDI",
  67. "HAS_WINRT",
  68. "HAS_PROGRESS",
  69. "PREFER_ASYNC",
  70. "HAS_AWAIT",
  71. "HAS_APTCA",
  72. "USE_TIMER_SELF_ROOT",
  73. "DESKTOPCLR",
  74. "DESKTOPCLR46",
  75. "XUNIT"
  76. ]
  77. },
  78. "dependencies": {
  79. "System.Reactive.Windows.Threading": { "target": "project" },
  80. "System.Reactive.Windows.Forms": { "target": "project" },
  81. "System.Reactive.Runtime.Remoting": { "target": "project" }
  82. },
  83. "frameworkAssemblies": {
  84. "System.Threading.Tasks": ""
  85. }
  86. }
  87. }
  88. }