project.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. "exclude": [
  22. "App.cs"
  23. ]
  24. },
  25. "dependencies": {
  26. "System.Interactive.Providers": { "target": "project" },
  27. "System.Interactive.Async.Providers": { "target": "project" },
  28. "xunit": "2.1.0",
  29. "dotnet-test-xunit": "1.0.0-rc2-*"
  30. },
  31. "testRunner": "xunit",
  32. "frameworks": {
  33. "netcoreapp1.0": {
  34. "imports": [ "dotnet", "dnxcore50", "portable-net45+win8" ],
  35. "buildOptions": {
  36. "define": [
  37. "HAS_AWAIT"
  38. ]
  39. },
  40. "dependencies": {
  41. "Microsoft.NETCore.App": {
  42. "version": "1.0.0",
  43. "type": "platform"
  44. }
  45. }
  46. },
  47. "net461": {
  48. "buildOptions": {
  49. "define": [
  50. "HAS_AWAIT"
  51. ]
  52. }
  53. }
  54. }
  55. }