project.json 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. {
  2. "buildOptions": {
  3. "emitEntryPoint": true
  4. },
  5. "configurations": {
  6. "Debug": {
  7. "buildOptions": {
  8. "define": [ "SIGNED" ],
  9. "keyFile": "../keys/Grpc.snk",
  10. "publicSign": true,
  11. "xmlDoc": true,
  12. "compile": {
  13. "includeFiles": [ "../Grpc.Core/Version.cs" ]
  14. },
  15. "copyToOutput": {
  16. "include": "data/*",
  17. "mappings": {
  18. "grpc_csharp_ext.x64.dll": "../../../vsprojects/x64/Debug/grpc_csharp_ext.dll",
  19. "grpc_csharp_ext.x86.dll": "../../../vsprojects/Debug/grpc_csharp_ext.dll",
  20. "libgrpc_csharp_ext.x64.so": "../../../libs/dbg/libgrpc_csharp_ext.so",
  21. "libgrpc_csharp_ext.x64.dylib": "../../../libs/dbg/libgrpc_csharp_ext.dylib"
  22. }
  23. }
  24. }
  25. },
  26. "Release": {
  27. "buildOptions": {
  28. "define": [ "SIGNED" ],
  29. "keyFile": "../keys/Grpc.snk",
  30. "publicSign": true,
  31. "xmlDoc": true,
  32. "compile": {
  33. "includeFiles": [ "../Grpc.Core/Version.cs" ]
  34. },
  35. "copyToOutput": {
  36. "include": "data/*",
  37. "mappings": {
  38. "grpc_csharp_ext.x64.dll": "../../../vsprojects/x64/Release/grpc_csharp_ext.dll",
  39. "grpc_csharp_ext.x86.dll": "../../../vsprojects/Release/grpc_csharp_ext.dll",
  40. "libgrpc_csharp_ext.x64.so": "../../../libs/opt/libgrpc_csharp_ext.so",
  41. "libgrpc_csharp_ext.x64.dylib": "../../../libs/opt/libgrpc_csharp_ext.dylib"
  42. }
  43. }
  44. }
  45. }
  46. },
  47. "runtimes": {
  48. "win7-x64": { },
  49. "debian.8-x64": { },
  50. "osx.10.11-x64": { }
  51. },
  52. "dependencies": {
  53. "Grpc.Auth": {
  54. "target": "project"
  55. },
  56. "Grpc.Core": {
  57. "target": "project"
  58. },
  59. "Google.Protobuf": "3.0.0-beta3",
  60. "CommandLineParser": "1.9.71",
  61. "NUnit": "3.2.0",
  62. "NUnitLite": "3.2.0-*"
  63. },
  64. "frameworks": {
  65. "net45": {
  66. "dependencies": {
  67. "Moq": "4.2.1510.2205"
  68. },
  69. "frameworkAssemblies": {
  70. "System.Runtime": "",
  71. "System.IO": ""
  72. }
  73. },
  74. "netstandard1.5": {
  75. "imports": [
  76. "portable-net45",
  77. "net45"
  78. ],
  79. "dependencies": {
  80. "NETStandard.Library": "1.5.0-rc2-24027",
  81. "System.Linq.Expressions": "4.0.11-rc2-24027"
  82. }
  83. }
  84. }
  85. }