project.json 981 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "version": "1.2.0-dev",
  3. "title": "gRPC C# Core Testing",
  4. "authors": [ "Google Inc." ],
  5. "copyright": "Copyright 2017, Google Inc.",
  6. "packOptions": {
  7. "summary": "Testing support for gRPC C#",
  8. "description": "Useful when testing code that uses gRPC.",
  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 test testing" ]
  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. },
  26. "frameworks": {
  27. "net45": {
  28. "frameworkAssemblies": {
  29. "System.Runtime": "",
  30. "System.IO": ""
  31. }
  32. },
  33. "netstandard1.5": {
  34. "dependencies": {
  35. "NETStandard.Library": "1.6.0"
  36. }
  37. }
  38. }
  39. }