project.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "version": "1.2.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. "xmlDoc": true,
  19. "compile": {
  20. "includeFiles": [ "../Grpc.Core/Version.cs" ]
  21. }
  22. },
  23. "dependencies": {
  24. "Grpc.Core": "1.2.0-dev",
  25. "Google.Apis.Auth": "1.16.0"
  26. },
  27. "frameworks": {
  28. "net45": { },
  29. "netstandard1.5": {
  30. "dependencies": {
  31. "NETStandard.Library": "1.6.0"
  32. }
  33. }
  34. }
  35. }