project.json 958 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "dependencies": {
  3. "Microsoft.AspNetCore.Cryptography.Internal": "1.0.0-*",
  4. "Microsoft.AspNetCore.DataProtection.Abstractions": "1.0.0-*",
  5. "Microsoft.AspNetCore.Testing": "1.0.0-*",
  6. "Microsoft.NETCore.Platforms": "1.0.1-*",
  7. "xunit": "2.1.0"
  8. },
  9. "frameworks": {
  10. "netstandardapp1.5": {
  11. "dependencies": {
  12. "moq.netcore": "4.4.0-beta8",
  13. "dotnet-test-xunit": "1.0.0-dev-*",
  14. "System.Diagnostics.Process": "4.1.0-*"
  15. },
  16. "imports": [
  17. "dnxcore50",
  18. "portable-net451+win8"
  19. ]
  20. },
  21. "net451": {
  22. "dependencies": {
  23. "Moq": "4.2.1312.1622",
  24. "xunit.runner.console": "2.1.0"
  25. },
  26. "frameworkAssemblies": {
  27. "System.Runtime": "",
  28. "System.Threading.Tasks": ""
  29. }
  30. }
  31. },
  32. "testRunner": "xunit",
  33. "compile": "../common/**/*.cs",
  34. "compilationOptions": {
  35. "warningsAsErrors": true,
  36. "keyFile": "../../tools/Key.snk"
  37. }
  38. }