project.json 665 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "version": "1.1.0-*",
  3. "description": "Infrastructure for ASP.NET Core cryptographic packages. Applications and libraries should not reference this package directly.",
  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. "NETStandard.Library": "1.6.1-*"
  16. },
  17. "frameworks": {
  18. "net451": {},
  19. "netstandard1.3": {}
  20. },
  21. "buildOptions": {
  22. "allowUnsafe": true,
  23. "warningsAsErrors": true,
  24. "keyFile": "../../tools/Key.snk",
  25. "nowarn": [
  26. "CS1591"
  27. ],
  28. "xmlDoc": true
  29. }
  30. }