project.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "version": "1.1.0-dev",
  3. "title": "gRPC C# Auth",
  4. "authors": [ "Google Inc." ],
  5. "copyright": "Copyright 2015, Google Inc.",
  6. "packOptions": {
  7. "summary": "Auth library for C# implementation of gRPC - an RPC library and framework",
  8. "description": "Auth library for C# implementation of gRPC - an RPC library and framework. See project site for more info.",
  9. "owners": [ "grpc-packages" ],
  10. "licenseUrl": "https://github.com/grpc/grpc/blob/master/LICENSE",
  11. "projectUrl": "https://github.com/grpc/grpc",
  12. "requireLicenseAcceptance": false,
  13. "tags": [ "gRPC RPC Protocol HTTP/2 Auth OAuth2" ],
  14. },
  15. "buildOptions": {
  16. "define": [ "SIGNED" ],
  17. "keyFile": "../keys/Grpc.snk",
  18. "publicSign": true,
  19. "xmlDoc": true,
  20. "compile": {
  21. "includeFiles": [ "../Grpc.Core/Version.cs" ]
  22. }
  23. },
  24. "dependencies": {
  25. "Grpc.Core": "1.1.0-dev",
  26. "Google.Apis.Auth": "1.16.0"
  27. },
  28. "frameworks": {
  29. "net45": { },
  30. "netstandard1.5": {
  31. "dependencies": {
  32. "NETStandard.Library": "1.6.0"
  33. }
  34. }
  35. }
  36. }