project.json 973 B

123456789101112131415161718192021222324252627282930313233343536373839
  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. "imports": [
  27. "dotnet5.4"
  28. ]
  29. }
  30. },
  31. "compilationOptions": {
  32. "warningsAsErrors": true,
  33. "keyFile": "../../tools/Key.snk",
  34. "nowarn": [
  35. "CS1591"
  36. ],
  37. "xmlDoc": true
  38. }
  39. }