project.json 705 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "dependencies": {
  3. "dotnet-test-xunit": "2.2.0-*",
  4. "Microsoft.AspNetCore.DataProtection": "1.2.0-*",
  5. "Microsoft.AspNetCore.Testing": "1.2.0-*",
  6. "Microsoft.Extensions.DependencyInjection": "1.2.0-*",
  7. "Moq": "4.6.36-*",
  8. "xunit": "2.2.0-*"
  9. },
  10. "frameworks": {
  11. "netcoreapp1.1": {
  12. "dependencies": {
  13. "Microsoft.NETCore.App": {
  14. "version": "1.2.0-*",
  15. "type": "platform"
  16. },
  17. "System.Diagnostics.TraceSource": "4.4.0-*"
  18. }
  19. },
  20. "net451": {}
  21. },
  22. "testRunner": "xunit",
  23. "buildOptions": {
  24. "allowUnsafe": true,
  25. "warningsAsErrors": true,
  26. "keyFile": "../../tools/Key.snk",
  27. "compile": "../shared/*.cs"
  28. }
  29. }