blob: 468d281618cff9ab1896f09897caf235249bc634 [file] [log] [blame]
Jan Tattermusch939e9ca2016-06-21 08:00:42 -07001<%page args="executable=False,includeData=False"/>\
2"buildOptions": {
3 % if executable:
4 "emitEntryPoint": true
5 % endif
6 },
7 % if executable:
8 "configurations": {
9 "Debug": {
10 "buildOptions": {
11 "copyToOutput": {
12 % if includeData:
13 "include": "data/*",
14 % endif
15 "mappings": {
16 "nativelibs/windows_x64/grpc_csharp_ext.dll": "../../../vsprojects/x64/Debug/grpc_csharp_ext.dll",
17 "nativelibs/windows_x86/grpc_csharp_ext.dll": "../../../vsprojects/Debug/grpc_csharp_ext.dll",
18 "nativelibs/linux_x64/libgrpc_csharp_ext.so": "../../../libs/dbg/libgrpc_csharp_ext.so",
19 "nativelibs/macosx_x64/libgrpc_csharp_ext.dylib": "../../../libs/dbg/libgrpc_csharp_ext.dylib"
20 }
21 }
22 }
23 },
24 "Release": {
25 "buildOptions": {
26 "copyToOutput": {
27 % if includeData:
28 "include": "data/*",
29 % endif
30 "mappings": {
31 "nativelibs/windows_x64/grpc_csharp_ext.dll": "../../../vsprojects/x64/Release/grpc_csharp_ext.dll",
32 "nativelibs/windows_x86/grpc_csharp_ext.dll": "../../../vsprojects/Release/grpc_csharp_ext.dll",
33 "nativelibs/linux_x64/libgrpc_csharp_ext.so": "../../../libs/opt/libgrpc_csharp_ext.so",
34 "nativelibs/macosx_x64/libgrpc_csharp_ext.dylib": "../../../libs/opt/libgrpc_csharp_ext.dylib"
35 }
36 }
37 }
38 }
39 },
40 "runtimes": {
41 "win7-x64": { },
42 "debian.8-x64": { },
43 "osx.10.11-x64": { }
44 },
45 % endif