project.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "dependencies": {
  3. "Microsoft.AspNetCore.Cryptography.Internal": "1.0.0-*",
  4. "Microsoft.AspNetCore.DataProtection.Abstractions": "1.0.0-*",
  5. "Microsoft.AspNetCore.Testing": "1.0.0-*",
  6. "xunit": "2.1.0"
  7. },
  8. "frameworks": {
  9. "netcoreapp1.0": {
  10. "dependencies": {
  11. "Microsoft.NETCore.App": {
  12. "version": "1.0.0-*",
  13. "type": "platform"
  14. },
  15. "moq.netcore": "4.4.0-beta8",
  16. "dotnet-test-xunit": "1.0.0-dev-*",
  17. "System.Diagnostics.Process": "4.1.0-*",
  18. "System.Diagnostics.TraceSource": "4.0.0-*"
  19. },
  20. "imports": [
  21. "dnxcore50",
  22. "portable-net451+win8"
  23. ]
  24. },
  25. "net451": {
  26. "dependencies": {
  27. "Moq": "4.2.1312.1622"
  28. },
  29. "frameworkAssemblies": {
  30. "System.Runtime": "",
  31. "System.Threading.Tasks": ""
  32. }
  33. }
  34. },
  35. "testRunner": "xunit",
  36. "compile": "../common/**/*.cs",
  37. "compilationOptions": {
  38. "warningsAsErrors": true,
  39. "keyFile": "../../tools/Key.snk"
  40. }
  41. }