project.json 949 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "version": "1.3.0-dev",
  3. "title": "gRPC C# Reflection",
  4. "authors": [ "Google Inc." ],
  5. "copyright": "Copyright 2016, Google Inc.",
  6. "packOptions": {
  7. "summary": "Implementation of gRPC reflection service",
  8. "description": "Provides information about services running on a gRPC C# server.",
  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 reflection" ]
  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.3.0-dev",
  25. "Google.Protobuf": "3.2.0"
  26. },
  27. "frameworks": {
  28. "net45": {},
  29. "netstandard1.5": {
  30. "dependencies": {
  31. "NETStandard.Library": "1.6.0"
  32. }
  33. }
  34. }
  35. }