project.json 924 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "version": "1.0.0-*",
  3. "description": "ASP.NET Core data protection abstractions.\r\nCommonly used types:\r\nMicrosoft.AspNetCore.DataProtection.IDataProtectionProvider\r\nMicrosoft.AspNetCore.DataProtection.IDataProtector",
  4. "tags": [
  5. "aspnetcore",
  6. "dataprotection"
  7. ],
  8. "repository": {
  9. "type": "git",
  10. "url": "git://github.com/aspnet/dataprotection"
  11. },
  12. "dependencies": {
  13. "Microsoft.AspNetCore.DataProtection.Sources": {
  14. "type": "build",
  15. "version": "1.0.0-*"
  16. },
  17. "Microsoft.Extensions.PlatformAbstractions": "1.0.0-*"
  18. },
  19. "frameworks": {
  20. "net451": {},
  21. "netstandard1.3": {
  22. "dependencies": {
  23. "System.ComponentModel": "4.0.1-*",
  24. "System.Diagnostics.Debug": "4.0.11-*"
  25. }
  26. }
  27. },
  28. "compilationOptions": {
  29. "warningsAsErrors": true,
  30. "keyFile": "../../tools/Key.snk",
  31. "nowarn": [
  32. "CS1591"
  33. ],
  34. "xmlDoc": true
  35. }
  36. }