project.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "version": "3.2.0",
  3. "title": "Google Protocol Buffers",
  4. "description": "See project site for more info.",
  5. "authors": [ "Google Inc." ],
  6. "copyright": "Copyright 2015, Google Inc.",
  7. "packOptions": {
  8. "summary": "C# runtime library for Protocol Buffers - Google's data interchange format.",
  9. "tags": [ "Protocol", "Buffers", "Binary", "Serialization", "Format", "Google", "proto", "proto3" ],
  10. "owners": [ "protobuf-packages" ],
  11. "licenseUrl": "https://github.com/google/protobuf/blob/master/LICENSE",
  12. "projectUrl": "https://github.com/google/protobuf",
  13. "releaseNotes": "C# proto3 support",
  14. "requireLicenseAcceptance": false,
  15. "repository": {
  16. "url": "https://github.com/nodatime/nodatime.git"
  17. }
  18. },
  19. "buildOptions": {
  20. "debugType": "portable",
  21. "keyFile": "../../keys/Google.Protobuf.snk",
  22. "xmlDoc": true
  23. },
  24. "configurations": {
  25. "Debug": {
  26. "buildOptions": {
  27. "define": [ "DEBUG", "TRACE" ]
  28. }
  29. },
  30. "Release": {
  31. "buildOptions": {
  32. "define": [ "RELEASE", "TRACE" ],
  33. "optimize": true
  34. }
  35. }
  36. },
  37. "frameworks": {
  38. // This target allows the package to be installed in a .NET 4.5+
  39. // project without asking for myriad other dependencies.
  40. "net45": {
  41. },
  42. "netstandard1.0": {
  43. "dependencies": {
  44. "System.Collections": "4.0.11",
  45. "System.Diagnostics.Debug": "4.0.11",
  46. "System.Globalization": "4.0.11",
  47. "System.IO": "4.1.0",
  48. "System.Linq": "4.1.0",
  49. "System.Linq.Expressions": "4.1.0",
  50. "System.ObjectModel": "4.0.12",
  51. "System.Reflection": "4.1.0",
  52. "System.Reflection.Extensions": "4.0.1",
  53. "System.Runtime": "4.1.0",
  54. "System.Runtime.Extensions": "4.1.0",
  55. "System.Text.Encoding": "4.0.11",
  56. "System.Text.RegularExpressions": "4.1.0",
  57. "System.Threading": "4.0.11"
  58. }
  59. }
  60. }
  61. }