project.json 2.0 KB

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