project.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  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. "tags": [ ],
  8. "iconUrl": "http://go.microsoft.com/fwlink/?LinkId=261274",
  9. "projectUrl": "https://github.com/Reactive-Extensions/Rx.NET",
  10. "licenseUrl": "https://raw.githubusercontent.com/Reactive-Extensions/Rx.NET/master/Ix.NET/Source/license.txt",
  11. "requireLicenseAcceptance": true,
  12. "compilationOptions": {
  13. "emitEntryPoint": true
  14. },
  15. "dependencies": {
  16. "System.Interactive.Providers": { "target": "project" },
  17. "System.Interactive.Async.Providers": { "target": "project" },
  18. "xunit": "2.1.0",
  19. "dotnet-test-xunit": "1.0.0-dev-79755-47"
  20. },
  21. "exclude": [
  22. "App.cs"
  23. ],
  24. "testRunner": "xunit",
  25. "frameworks": {
  26. "netstandardapp1.5": {
  27. "imports": [ "dnxcore50", "portable-net45+win8" ],
  28. "compilationOptions": {
  29. "define": [
  30. "HAS_AWAIT"
  31. ]
  32. }
  33. }
  34. }
  35. }