Alexander Polcyn | 6bfe7da | 2016-08-09 11:40:05 -0700 | [diff] [blame] | 1 | <%page args="executable=False,includeData=False"/>\ |
Jan Tattermusch | 939e9ca | 2016-06-21 08:00:42 -0700 | [diff] [blame] | 2 | "buildOptions": { |
| 3 | % if executable: |
| 4 | "emitEntryPoint": true |
| 5 | % endif |
| 6 | }, |
| 7 | % if executable: |
| 8 | "configurations": { |
| 9 | "Debug": { |
| 10 | "buildOptions": { |
Jan Tattermusch | eb8bfc6 | 2016-06-27 18:38:59 -0700 | [diff] [blame] | 11 | "define": [ "SIGNED" ], |
| 12 | "keyFile": "../keys/Grpc.snk", |
| 13 | "publicSign": true, |
| 14 | "xmlDoc": true, |
Jan Tattermusch | 3f594c1 | 2016-06-29 12:03:21 -0700 | [diff] [blame] | 15 | "compile": { |
| 16 | "includeFiles": [ "../Grpc.Core/Version.cs" ] |
| 17 | }, |
Jan Tattermusch | 939e9ca | 2016-06-21 08:00:42 -0700 | [diff] [blame] | 18 | "copyToOutput": { |
Jan Tattermusch | 939e9ca | 2016-06-21 08:00:42 -0700 | [diff] [blame] | 19 | "mappings": { |
Jan Tattermusch | 4f5009f | 2016-09-09 13:21:46 +0200 | [diff] [blame] | 20 | % if includeData: |
| 21 | "data/ca.pem": "../Grpc.IntegrationTesting/data/ca.pem", |
| 22 | "data/server1.key": "../Grpc.IntegrationTesting/data/server1.key", |
| 23 | "data/server1.pem": "../Grpc.IntegrationTesting/data/server1.pem", |
| 24 | % endif |
Jon Skeet | 3fcd20f | 2016-07-08 14:38:39 +0100 | [diff] [blame] | 25 | "grpc_csharp_ext.x64.dll": "../../../vsprojects/x64/Debug/grpc_csharp_ext.dll", |
| 26 | "grpc_csharp_ext.x86.dll": "../../../vsprojects/Debug/grpc_csharp_ext.dll", |
| 27 | "libgrpc_csharp_ext.x64.so": "../../../libs/dbg/libgrpc_csharp_ext.so", |
| 28 | "libgrpc_csharp_ext.x64.dylib": "../../../libs/dbg/libgrpc_csharp_ext.dylib" |
Jan Tattermusch | 939e9ca | 2016-06-21 08:00:42 -0700 | [diff] [blame] | 29 | } |
| 30 | } |
| 31 | } |
| 32 | }, |
| 33 | "Release": { |
| 34 | "buildOptions": { |
Jan Tattermusch | eb8bfc6 | 2016-06-27 18:38:59 -0700 | [diff] [blame] | 35 | "define": [ "SIGNED" ], |
| 36 | "keyFile": "../keys/Grpc.snk", |
| 37 | "publicSign": true, |
| 38 | "xmlDoc": true, |
Jan Tattermusch | 3f594c1 | 2016-06-29 12:03:21 -0700 | [diff] [blame] | 39 | "compile": { |
| 40 | "includeFiles": [ "../Grpc.Core/Version.cs" ] |
| 41 | }, |
Jan Tattermusch | 939e9ca | 2016-06-21 08:00:42 -0700 | [diff] [blame] | 42 | "copyToOutput": { |
Jan Tattermusch | 939e9ca | 2016-06-21 08:00:42 -0700 | [diff] [blame] | 43 | "mappings": { |
Jan Tattermusch | 4f5009f | 2016-09-09 13:21:46 +0200 | [diff] [blame] | 44 | % if includeData: |
| 45 | "data/ca.pem": "../Grpc.IntegrationTesting/data/ca.pem", |
| 46 | "data/server1.key": "../Grpc.IntegrationTesting/data/server1.key", |
| 47 | "data/server1.pem": "../Grpc.IntegrationTesting/data/server1.pem", |
| 48 | % endif |
Jon Skeet | 3fcd20f | 2016-07-08 14:38:39 +0100 | [diff] [blame] | 49 | "grpc_csharp_ext.x64.dll": "../../../vsprojects/x64/Release/grpc_csharp_ext.dll", |
| 50 | "grpc_csharp_ext.x86.dll": "../../../vsprojects/Release/grpc_csharp_ext.dll", |
| 51 | "libgrpc_csharp_ext.x64.so": "../../../libs/opt/libgrpc_csharp_ext.so", |
| 52 | "libgrpc_csharp_ext.x64.dylib": "../../../libs/opt/libgrpc_csharp_ext.dylib" |
Jan Tattermusch | 939e9ca | 2016-06-21 08:00:42 -0700 | [diff] [blame] | 53 | } |
| 54 | } |
| 55 | } |
| 56 | } |
| 57 | }, |
Alexander Polcyn | 86e40c6 | 2016-07-27 14:43:33 -0700 | [diff] [blame] | 58 | %endif |