project.json 753 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "dependencies": {
  3. "dotnet-test-xunit": "2.2.0-*",
  4. "Microsoft.AspNetCore.Cryptography.Internal": "1.1.0-*",
  5. "Microsoft.AspNetCore.DataProtection.Abstractions": "1.1.0-*",
  6. "Microsoft.AspNetCore.Testing": "1.1.0-*",
  7. "Moq": "4.6.25-*",
  8. "xunit": "2.2.0-*"
  9. },
  10. "frameworks": {
  11. "netcoreapp1.0": {
  12. "dependencies": {
  13. "Microsoft.NETCore.App": {
  14. "version": "1.0.0-*",
  15. "type": "platform"
  16. },
  17. "System.Diagnostics.TraceSource": "4.0.0-*"
  18. },
  19. "imports": "dotnet5.4"
  20. },
  21. "net451": {}
  22. },
  23. "testRunner": "xunit",
  24. "buildOptions": {
  25. "warningsAsErrors": true,
  26. "keyFile": "../../tools/Key.snk",
  27. "compile": {
  28. "include": "../common/**/*.cs"
  29. }
  30. }
  31. }