project.json 928 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. "xunit": "2.1.0"
  8. },
  9. "frameworks": {
  10. "netcoreapp1.0": {
  11. "dependencies": {
  12. "Microsoft.NETCore.App": {
  13. "version": "1.0.0-*",
  14. "type": "platform"
  15. },
  16. "dotnet-test-xunit": "1.0.0-dev-*",
  17. "System.Diagnostics.Process": "4.1.0-*"
  18. },
  19. "imports": [
  20. "dnxcore50",
  21. "portable-net451+win8"
  22. ]
  23. },
  24. "net451": {
  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. }