diff options
author | murgatroid99 <mlumish@google.com> | 2016-06-23 10:54:52 -0700 |
---|---|---|
committer | murgatroid99 <mlumish@google.com> | 2016-06-23 10:54:52 -0700 |
commit | 5fec4bf5f34792e30d2691024cbd9914626db0a3 (patch) | |
tree | e1e07586bc1745c32139011fde6c7fe4e61812a7 /src/csharp/Grpc.IntegrationTesting.Client/project.json | |
parent | e16907e5a1fb7e61b24d4d141cbad021e96252bf (diff) | |
parent | b309bc94bfd3bdd067e4f0a62d0cd9f29cf3a288 (diff) |
Merge branch 'master' into grpc_trace_granularity
Diffstat (limited to 'src/csharp/Grpc.IntegrationTesting.Client/project.json')
-rw-r--r-- | src/csharp/Grpc.IntegrationTesting.Client/project.json | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/src/csharp/Grpc.IntegrationTesting.Client/project.json b/src/csharp/Grpc.IntegrationTesting.Client/project.json new file mode 100644 index 0000000000..e5ba04d717 --- /dev/null +++ b/src/csharp/Grpc.IntegrationTesting.Client/project.json @@ -0,0 +1,56 @@ +{ + "buildOptions": { + "emitEntryPoint": true + }, + "configurations": { + "Debug": { + "buildOptions": { + "copyToOutput": { + "include": "data/*", + "mappings": { + "nativelibs/windows_x64/grpc_csharp_ext.dll": "../../../vsprojects/x64/Debug/grpc_csharp_ext.dll", + "nativelibs/windows_x86/grpc_csharp_ext.dll": "../../../vsprojects/Debug/grpc_csharp_ext.dll", + "nativelibs/linux_x64/libgrpc_csharp_ext.so": "../../../libs/dbg/libgrpc_csharp_ext.so", + "nativelibs/macosx_x64/libgrpc_csharp_ext.dylib": "../../../libs/dbg/libgrpc_csharp_ext.dylib" + } + } + } + }, + "Release": { + "buildOptions": { + "copyToOutput": { + "include": "data/*", + "mappings": { + "nativelibs/windows_x64/grpc_csharp_ext.dll": "../../../vsprojects/x64/Release/grpc_csharp_ext.dll", + "nativelibs/windows_x86/grpc_csharp_ext.dll": "../../../vsprojects/Release/grpc_csharp_ext.dll", + "nativelibs/linux_x64/libgrpc_csharp_ext.so": "../../../libs/opt/libgrpc_csharp_ext.so", + "nativelibs/macosx_x64/libgrpc_csharp_ext.dylib": "../../../libs/opt/libgrpc_csharp_ext.dylib" + } + } + } + } + }, + "runtimes": { + "win7-x64": { }, + "debian.8-x64": { }, + "osx.10.11-x64": { } + }, + + "dependencies": { + "Grpc.IntegrationTesting": { + "target": "project" + } + }, + "frameworks": { + "net45": { }, + "netstandard1.5": { + "imports": [ + "portable-net45", + "net45" + ], + "dependencies": { + "NETStandard.Library": "1.5.0-rc2-24027" + } + } + } +} |