project.json 1.1 KB

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