project.json 723 B

123456789101112131415161718192021222324252627282930
  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.36-*",
  8. "xunit": "2.2.0-*"
  9. },
  10. "frameworks": {
  11. "netcoreapp1.0": {
  12. "dependencies": {
  13. "Microsoft.NETCore.App": {
  14. "version": "1.1.0-*",
  15. "type": "platform"
  16. },
  17. "System.Diagnostics.TraceSource": "4.3.0-*"
  18. }
  19. },
  20. "net451": {}
  21. },
  22. "testRunner": "xunit",
  23. "buildOptions": {
  24. "warningsAsErrors": true,
  25. "keyFile": "../../tools/Key.snk",
  26. "compile": {
  27. "include": "../common/**/*.cs"
  28. }
  29. }
  30. }