project.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "buildOptions": {
  3. "emitEntryPoint": true
  4. },
  5. "configurations": {
  6. "Debug": {
  7. "buildOptions": {
  8. "define": [ "SIGNED" ],
  9. "keyFile": "../keys/Grpc.snk",
  10. "xmlDoc": true,
  11. "compile": {
  12. "includeFiles": [ "../Grpc.Core/Version.cs" ]
  13. },
  14. "copyToOutput": {
  15. "mappings": {
  16. "grpc_csharp_ext.x64.dll": "../../../cmake/build/x64/Debug/grpc_csharp_ext.dll",
  17. "grpc_csharp_ext.x86.dll": "../../../cmake/build/Win32/Debug/grpc_csharp_ext.dll",
  18. "libgrpc_csharp_ext.x64.so": "../../../libs/dbg/libgrpc_csharp_ext.so",
  19. "libgrpc_csharp_ext.x64.dylib": "../../../libs/dbg/libgrpc_csharp_ext.dylib"
  20. }
  21. }
  22. }
  23. },
  24. "Release": {
  25. "buildOptions": {
  26. "define": [ "SIGNED" ],
  27. "keyFile": "../keys/Grpc.snk",
  28. "xmlDoc": true,
  29. "compile": {
  30. "includeFiles": [ "../Grpc.Core/Version.cs" ]
  31. },
  32. "copyToOutput": {
  33. "mappings": {
  34. "grpc_csharp_ext.x64.dll": "../../../cmake/build/x64/Release/grpc_csharp_ext.dll",
  35. "grpc_csharp_ext.x86.dll": "../../../cmake/build/Win32/Release/grpc_csharp_ext.dll",
  36. "libgrpc_csharp_ext.x64.so": "../../../libs/opt/libgrpc_csharp_ext.so",
  37. "libgrpc_csharp_ext.x64.dylib": "../../../libs/opt/libgrpc_csharp_ext.dylib"
  38. }
  39. }
  40. }
  41. }
  42. },
  43. "dependencies": {
  44. "Grpc.Core": {
  45. "target": "project"
  46. },
  47. "Newtonsoft.Json": "8.0.3",
  48. "NUnit": "3.2.0",
  49. "NUnitLite": "3.2.0-*",
  50. "NUnit.ConsoleRunner": "3.2.0",
  51. "OpenCover": "4.6.519",
  52. "ReportGenerator": "2.4.4.0"
  53. },
  54. "frameworks": {
  55. "net45": { },
  56. "netcoreapp1.0": {
  57. "imports": [
  58. "portable-net45"
  59. ],
  60. "dependencies": {
  61. "Microsoft.NETCore.App": {
  62. "type": "platform",
  63. "version": "1.0.0"
  64. }
  65. }
  66. }
  67. },
  68. }