project.json 1.1 KB

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