project.json 643 B

123456789101112131415161718192021222324252627
  1. {
  2. "dependencies": {
  3. "dotnet-test-xunit": "2.2.0-*",
  4. "Microsoft.AspNetCore.Cryptography.Internal": "1.2.0-*",
  5. "Microsoft.AspNetCore.Cryptography.KeyDerivation": "1.2.0-*",
  6. "Microsoft.AspNetCore.Testing": "1.2.0-*",
  7. "xunit": "2.2.0-*"
  8. },
  9. "frameworks": {
  10. "netcoreapp1.1": {
  11. "dependencies": {
  12. "Microsoft.NETCore.App": {
  13. "version": "1.2.0-*",
  14. "type": "platform"
  15. }
  16. }
  17. },
  18. "net451": {}
  19. },
  20. "testRunner": "xunit",
  21. "buildOptions": {
  22. "allowUnsafe": true,
  23. "warningsAsErrors": true,
  24. "keyFile": "../../tools/Key.snk",
  25. "compile": "../shared/*.cs"
  26. }
  27. }