project.json 849 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "dependencies": {
  3. "dotnet-test-xunit": "2.2.0-*",
  4. "Microsoft.AspNetCore.Cryptography.Internal": "1.1.0-*",
  5. "Microsoft.AspNetCore.DataProtection.Test.Shared": {
  6. "type": "build",
  7. "version": "1.0.0-*"
  8. },
  9. "Microsoft.AspNetCore.Testing": "1.1.0-*",
  10. "xunit": "2.2.0-*"
  11. },
  12. "frameworks": {
  13. "netcoreapp1.0": {
  14. "dependencies": {
  15. "Microsoft.NETCore.App": {
  16. "version": "1.1.0-*",
  17. "type": "platform"
  18. }
  19. },
  20. "imports": [
  21. "dnxcore50",
  22. "portable-net451+win8"
  23. ]
  24. },
  25. "net451": {
  26. "frameworkAssemblies": {
  27. "System.Runtime": "",
  28. "System.Threading.Tasks": ""
  29. }
  30. }
  31. },
  32. "testRunner": "xunit",
  33. "buildOptions": {
  34. "allowUnsafe": true,
  35. "keyFile": "../../tools/Key.snk",
  36. "warningsAsErrors": true
  37. }
  38. }