project.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "version": "2.0.0-*",
  3. "title": "Interactive Extensions - Tests",
  4. "description": "Unit Tests",
  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. "exclude": [
  16. "App.cs"
  17. ]
  18. },
  19. "dependencies": {
  20. "System.Interactive.Providers": { "target": "project" },
  21. "System.Interactive.Async.Providers": { "target": "project" },
  22. "xunit": "2.1.0",
  23. "dotnet-test-xunit": "1.0.0-rc2-*"
  24. },
  25. "testRunner": "xunit",
  26. "frameworks": {
  27. "netcoreapp1.0": {
  28. "imports": [ "dotnet", "dnxcore50", "portable-net45+win8" ],
  29. "buildOptions": {
  30. "define": [
  31. "HAS_AWAIT"
  32. ]
  33. },
  34. "dependencies": {
  35. "Microsoft.NETCore.App": {
  36. "version": "1.0.0-rc2-3002702",
  37. "type": "platform"
  38. }
  39. }
  40. },
  41. "net461": {
  42. "buildOptions": {
  43. "define": [
  44. "HAS_AWAIT"
  45. ]
  46. }
  47. }
  48. }
  49. }