project.json 900 B

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