project.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "version": "1.1.0-dev",
  3. "title": "gRPC C# Healthchecking",
  4. "authors": [ "Google Inc." ],
  5. "copyright": "Copyright 2015, Google Inc.",
  6. "packOptions": {
  7. "summary": "Implementation of gRPC health service",
  8. "description": "Example implementation of grpc.health.v1 service that can be used for health-checking.",
  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 health check" ]
  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.Protobuf": "3.0.0"
  27. },
  28. "frameworks": {
  29. "net45": {
  30. "frameworkAssemblies": {
  31. "System.Runtime": "",
  32. "System.IO": ""
  33. }
  34. },
  35. "netstandard1.5": {
  36. "dependencies": {
  37. "NETStandard.Library": "1.6.0"
  38. }
  39. }
  40. }
  41. }