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. "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.Core": {
  52. "target": "project"
  53. },
  54. "Newtonsoft.Json": "8.0.3",
  55. "NUnit": "3.2.0",
  56. "NUnitLite": "3.2.0-*"
  57. },
  58. "frameworks": {
  59. "net45": { },
  60. "netstandard1.5": {
  61. "imports": [
  62. "portable-net45"
  63. ],
  64. "dependencies": {
  65. "NETStandard.Library": "1.5.0-rc2-24027"
  66. }
  67. }
  68. },
  69. }