project.json 899 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "dependencies": {
  3. "Microsoft.AspNetCore.DataProtection.Abstractions": "1.0.0-*",
  4. "Microsoft.AspNetCore.DataProtection.Extensions": "1.0.0-*",
  5. "Microsoft.AspNetCore.DataProtection.Test.Shared": {
  6. "type": "build",
  7. "version": "1.0.0-*"
  8. },
  9. "Microsoft.AspNetCore.Testing": "1.0.0-*",
  10. "Microsoft.NETCore.Platforms": "1.0.1-*",
  11. "xunit": "2.1.0"
  12. },
  13. "frameworks": {
  14. "dnx451": {
  15. "dependencies": {
  16. "Moq": "4.2.1312.1622",
  17. "xunit.runner.console": "2.1.0"
  18. }
  19. },
  20. "dnxcore50": {
  21. "dependencies": {
  22. "moq.netcore": "4.4.0-beta8",
  23. "xunit.runner.aspnet": "2.0.0-aspnet-*"
  24. },
  25. "imports": "portable-net451+win8"
  26. }
  27. },
  28. "testRunner": "xunit",
  29. "commands": {
  30. "test": "xunit.runner.aspnet"
  31. },
  32. "compilationOptions": {
  33. "warningsAsErrors": true,
  34. "keyFile": "../../tools/Key.snk"
  35. }
  36. }