project.json.template 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. %YAML 1.2
  2. --- |
  3. {
  4. "version": "${settings.csharp_version}",
  5. "title": "gRPC C# Healthchecking",
  6. "authors": [ "Google Inc." ],
  7. "copyright": "Copyright 2015, Google Inc.",
  8. "packOptions": {
  9. "summary": "Implementation of gRPC health service",
  10. "description": "Example implementation of grpc.health.v1 service that can be used for health-checking.",
  11. "owners": [ "grpc-packages" ],
  12. "licenseUrl": "https://github.com/grpc/grpc/blob/master/LICENSE",
  13. "projectUrl": "https://github.com/grpc/grpc",
  14. "requireLicenseAcceptance": false,
  15. "tags": [ "gRPC health check" ]
  16. },
  17. "buildOptions": {
  18. "define": [ "SIGNED" ],
  19. "keyFile": "../keys/Grpc.snk",
  20. "publicSign": true,
  21. "xmlDoc": true,
  22. "compile": {
  23. "includeFiles": [ "../Grpc.Core/Version.cs" ]
  24. }
  25. },
  26. "dependencies": {
  27. "Grpc.Core": "${settings.csharp_version}",
  28. "Google.Protobuf": "3.0.0"
  29. },
  30. "frameworks": {
  31. "net45": {
  32. "frameworkAssemblies": {
  33. "System.Runtime": "",
  34. "System.IO": ""
  35. }
  36. },
  37. "netstandard1.5": {
  38. "dependencies": {
  39. "NETStandard.Library": "1.6.0"
  40. }
  41. }
  42. }
  43. }