project.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "buildOptions": {
  3. "emitEntryPoint": true
  4. },
  5. "configurations": {
  6. "Debug": {
  7. "buildOptions": {
  8. "copyToOutput": {
  9. "mappings": {
  10. "nativelibs/windows_x64/grpc_csharp_ext.dll": "../../../vsprojects/x64/Debug/grpc_csharp_ext.dll",
  11. "nativelibs/windows_x86/grpc_csharp_ext.dll": "../../../vsprojects/Debug/grpc_csharp_ext.dll",
  12. "nativelibs/linux_x64/libgrpc_csharp_ext.so": "../../../libs/dbg/libgrpc_csharp_ext.so",
  13. "nativelibs/macosx_x64/libgrpc_csharp_ext.dylib": "../../../libs/dbg/libgrpc_csharp_ext.dylib"
  14. }
  15. }
  16. }
  17. },
  18. "Release": {
  19. "buildOptions": {
  20. "copyToOutput": {
  21. "mappings": {
  22. "nativelibs/windows_x64/grpc_csharp_ext.dll": "../../../vsprojects/x64/Release/grpc_csharp_ext.dll",
  23. "nativelibs/windows_x86/grpc_csharp_ext.dll": "../../../vsprojects/Release/grpc_csharp_ext.dll",
  24. "nativelibs/linux_x64/libgrpc_csharp_ext.so": "../../../libs/opt/libgrpc_csharp_ext.so",
  25. "nativelibs/macosx_x64/libgrpc_csharp_ext.dylib": "../../../libs/opt/libgrpc_csharp_ext.dylib"
  26. }
  27. }
  28. }
  29. }
  30. },
  31. "runtimes": {
  32. "win7-x64": { },
  33. "debian.8-x64": { },
  34. "osx.10.11-x64": { }
  35. },
  36. "dependencies": {
  37. "Grpc.HealthCheck": {
  38. "target": "project"
  39. },
  40. "NUnit": "3.2.0",
  41. "NUnitLite": "3.2.0-*"
  42. },
  43. "frameworks": {
  44. "net45": { },
  45. "netstandard1.5": {
  46. "imports": [
  47. "portable-net45"
  48. ],
  49. "dependencies": {
  50. "NETStandard.Library": "1.5.0-rc2-24027"
  51. }
  52. }
  53. }
  54. }