project.json.template 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. %YAML 1.2
  2. --- |
  3. {
  4. "version": "${settings.csharp_version}",
  5. "title": "gRPC C# Reflection",
  6. "authors": [ "Google Inc." ],
  7. "copyright": "Copyright 2016, Google Inc.",
  8. "packOptions": {
  9. "summary": "Implementation of gRPC reflection service",
  10. "description": "Provides information about services running on a gRPC C# server.",
  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 reflection" ]
  16. },
  17. "buildOptions": {
  18. "define": [ "SIGNED" ],
  19. "keyFile": "../keys/Grpc.snk",
  20. "xmlDoc": true,
  21. "compile": {
  22. "includeFiles": [ "../Grpc.Core/Version.cs" ]
  23. }
  24. },
  25. "dependencies": {
  26. "Grpc.Core": "${settings.csharp_version}",
  27. "Google.Protobuf": "3.0.0"
  28. },
  29. "frameworks": {
  30. "net45": {
  31. "frameworkAssemblies": {
  32. "System.Runtime": "",
  33. "System.IO": ""
  34. }
  35. },
  36. "netstandard1.5": {
  37. "dependencies": {
  38. "NETStandard.Library": "1.6.0"
  39. }
  40. }
  41. }
  42. }