project.json 693 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "version": "0.1.0-*",
  3. "description": "Redis storrage support as key store.",
  4. "packOptions": {
  5. "repository": {
  6. "type": "git",
  7. "url": "git://github.com/aspnet/dataprotection"
  8. },
  9. "tags": [
  10. "aspnetcore",
  11. "dataprotection",
  12. "redis"
  13. ]
  14. },
  15. "dependencies": {
  16. "Microsoft.AspNetCore.DataProtection": "1.1.0-*",
  17. "NETStandard.Library": "1.6.1-*",
  18. "StackExchange.Redis.StrongName": "1.1.605"
  19. },
  20. "frameworks": {
  21. "net451": {},
  22. "netstandard1.5": {}
  23. },
  24. "buildOptions": {
  25. "allowUnsafe": true,
  26. "warningsAsErrors": true,
  27. "keyFile": "../../tools/Key.snk",
  28. "nowarn": [
  29. "CS1591"
  30. ],
  31. "xmlDoc": true
  32. }
  33. }