project.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "version": "1.2.0-*",
  3. "description": "ASP.NET Core logic to protect and unprotect data, similar to DPAPI.",
  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.Cryptography.Internal": {
  16. "target": "project"
  17. },
  18. "Microsoft.AspNetCore.DataProtection.Abstractions": {
  19. "target": "project"
  20. },
  21. "Microsoft.AspNetCore.DataProtection.Sources": {
  22. "type": "build",
  23. "target": "project"
  24. },
  25. "Microsoft.AspNetCore.Hosting.Abstractions": "1.2.0-*",
  26. "Microsoft.Extensions.DependencyInjection.Abstractions": "1.2.0-*",
  27. "Microsoft.Extensions.Logging.Abstractions": "1.2.0-*",
  28. "Microsoft.Extensions.Options": "1.2.0-*",
  29. "NETStandard.Library": "1.6.2-*"
  30. },
  31. "frameworks": {
  32. "net451": {
  33. "frameworkAssemblies": {
  34. "System.Runtime": {
  35. "type": "build"
  36. },
  37. "System.Security": "",
  38. "System.Xml": "",
  39. "System.Xml.Linq": ""
  40. }
  41. },
  42. "netstandard1.3": {
  43. "dependencies": {
  44. "Microsoft.Win32.Registry": "4.4.0-*",
  45. "System.Security.Claims": "4.4.0-*",
  46. "System.Security.Principal.Windows": "4.4.0-*"
  47. }
  48. }
  49. },
  50. "buildOptions": {
  51. "allowUnsafe": true,
  52. "warningsAsErrors": true,
  53. "keyFile": "../../tools/Key.snk",
  54. "nowarn": [
  55. "CS1591"
  56. ],
  57. "xmlDoc": true
  58. }
  59. }