project.json 944 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "dependencies": {
  3. "Microsoft.AspNetCore.Cryptography.Internal": "1.0.0-*",
  4. "Microsoft.AspNetCore.Cryptography.KeyDerivation": "1.0.0-*",
  5. "Microsoft.AspNetCore.DataProtection.Test.Shared": "1.0.0-*",
  6. "Microsoft.AspNetCore.Testing": "1.0.0-*",
  7. "Microsoft.NETCore.Platforms": "1.0.1-*",
  8. "xunit": "2.1.0"
  9. },
  10. "frameworks": {
  11. "netstandardapp1.5": {
  12. "dependencies": {
  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. "xunit.runner.console": "2.1.0"
  24. },
  25. "frameworkAssemblies": {
  26. "System.Runtime": "",
  27. "System.Threading.Tasks": ""
  28. }
  29. }
  30. },
  31. "testRunner": "xunit",
  32. "compilationOptions": {
  33. "allowUnsafe": true,
  34. "warningsAsErrors": true,
  35. "keyFile": "../../tools/Key.snk"
  36. }
  37. }