project.json 947 B

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