project.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. "copyToOutput": {
  13. "include": "data/*",
  14. "mappings": {
  15. "nativelibs/windows_x64/grpc_csharp_ext.dll": "../../../vsprojects/x64/Debug/grpc_csharp_ext.dll",
  16. "nativelibs/windows_x86/grpc_csharp_ext.dll": "../../../vsprojects/Debug/grpc_csharp_ext.dll",
  17. "nativelibs/linux_x64/libgrpc_csharp_ext.so": "../../../libs/dbg/libgrpc_csharp_ext.so",
  18. "nativelibs/macosx_x64/libgrpc_csharp_ext.dylib": "../../../libs/dbg/libgrpc_csharp_ext.dylib"
  19. }
  20. }
  21. }
  22. },
  23. "Release": {
  24. "buildOptions": {
  25. "define": [ "SIGNED" ],
  26. "keyFile": "../keys/Grpc.snk",
  27. "publicSign": true,
  28. "xmlDoc": true,
  29. "copyToOutput": {
  30. "include": "data/*",
  31. "mappings": {
  32. "nativelibs/windows_x64/grpc_csharp_ext.dll": "../../../vsprojects/x64/Release/grpc_csharp_ext.dll",
  33. "nativelibs/windows_x86/grpc_csharp_ext.dll": "../../../vsprojects/Release/grpc_csharp_ext.dll",
  34. "nativelibs/linux_x64/libgrpc_csharp_ext.so": "../../../libs/opt/libgrpc_csharp_ext.so",
  35. "nativelibs/macosx_x64/libgrpc_csharp_ext.dylib": "../../../libs/opt/libgrpc_csharp_ext.dylib"
  36. }
  37. }
  38. }
  39. }
  40. },
  41. "runtimes": {
  42. "win7-x64": { },
  43. "debian.8-x64": { },
  44. "osx.10.11-x64": { }
  45. },
  46. "dependencies": {
  47. "Grpc.IntegrationTesting": {
  48. "target": "project"
  49. }
  50. },
  51. "frameworks": {
  52. "net45": { },
  53. "netstandard1.5": {
  54. "imports": [
  55. "portable-net45",
  56. "net45"
  57. ],
  58. "dependencies": {
  59. "NETStandard.Library": "1.5.0-rc2-24027"
  60. }
  61. }
  62. }
  63. }