project.json 946 B

12345678910111213141516171819202122232425262728293031323334353637
  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. "dnxcore50": {
  15. "dependencies": {
  16. "moq.netcore": "4.4.0-beta8",
  17. "dotnet-test-xunit": "1.0.0-dev-*"
  18. },
  19. "imports": "portable-net451+win8"
  20. },
  21. "dnx451": {
  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. "compilationOptions": {
  34. "warningsAsErrors": true,
  35. "keyFile": "../../tools/Key.snk"
  36. }
  37. }