mirror of https://github.com/grpc/grpc.git
The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
https://grpc.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
480 B
13 lines
480 B
10 years ago
|
<%def name="gen_packages_config(packages)">\
|
||
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<packages>
|
||
|
% if 'openssl' in packages:
|
||
|
<package id="openssl" version="1.0.2.1" targetFramework="Native" />
|
||
|
<package id="openssl.redist" version="1.0.2.1" targetFramework="Native" />
|
||
|
% endif
|
||
|
% if 'zlib' in packages:
|
||
|
<package id="zlib" version="1.2.8.7" targetFramework="Native" />
|
||
|
<package id="zlib.redist" version="1.2.8.7" targetFramework="Native" />
|
||
|
% endif
|
||
|
</packages>
|
||
|
</%def>\
|