project.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "version": "3.0.0-*",
  3. "title": "Interactive Extensions - Tests",
  4. "description": "Interactive 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": "https://github.com/Reactive-Extensions/Rx.NET",
  11. "licenseUrl": "https://raw.githubusercontent.com/Reactive-Extensions/Rx.NET/master/Ix.NET/Source/license.txt",
  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.Interactive.Providers": { "target": "project" },
  24. "System.Interactive.Async.Providers": { "target": "project" },
  25. "xunit": "2.2.0-beta3-build3342",
  26. "dotnet-test-xunit": "2.2.0-preview3-build1039",
  27. "FluentAssertions": "4.13.0"
  28. },
  29. "testRunner": "xunit",
  30. "frameworks": {
  31. "netcoreapp1.0": {
  32. "dependencies": {
  33. "Microsoft.NETCore.App": {
  34. "version": "1.0.0",
  35. "type": "platform"
  36. }
  37. }
  38. },
  39. "net461": {
  40. }
  41. }
  42. }