project.json 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. "nativelibs/windows_x64/grpc_csharp_ext.dll": "../../../vsprojects/x64/Debug/grpc_csharp_ext.dll",
  19. "nativelibs/windows_x86/grpc_csharp_ext.dll": "../../../vsprojects/Debug/grpc_csharp_ext.dll",
  20. "nativelibs/linux_x64/libgrpc_csharp_ext.so": "../../../libs/dbg/libgrpc_csharp_ext.so",
  21. "nativelibs/macosx_x64/libgrpc_csharp_ext.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. "nativelibs/windows_x64/grpc_csharp_ext.dll": "../../../vsprojects/x64/Release/grpc_csharp_ext.dll",
  39. "nativelibs/windows_x86/grpc_csharp_ext.dll": "../../../vsprojects/Release/grpc_csharp_ext.dll",
  40. "nativelibs/linux_x64/libgrpc_csharp_ext.so": "../../../libs/opt/libgrpc_csharp_ext.so",
  41. "nativelibs/macosx_x64/libgrpc_csharp_ext.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.IntegrationTesting": {
  54. "target": "project"
  55. }
  56. },
  57. "frameworks": {
  58. "net45": { },
  59. "netstandard1.5": {
  60. "imports": [
  61. "portable-net45",
  62. "net45"
  63. ],
  64. "dependencies": {
  65. "NETStandard.Library": "1.5.0-rc2-24027"
  66. }
  67. }
  68. }
  69. }