aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/vsprojects/grpc.sln.template
diff options
context:
space:
mode:
authorGravatar Nicolas Noble <nicolasnoble@users.noreply.github.com>2016-03-29 13:17:16 -0700
committerGravatar Nicolas Noble <nicolasnoble@users.noreply.github.com>2016-03-29 13:17:16 -0700
commitf1637b8df0d6ef415f57ca08dc870e23dfbea4ef (patch)
tree494d74d6daad6f0e41e8a94f614f36f528c83990 /templates/vsprojects/grpc.sln.template
parent6e6230a6e4715be6b8ff0ab489e35a4e640bb50b (diff)
parent67593ffc3459331bc53ac59de59ecc005ee1ad10 (diff)
Merge pull request #5846 from ctiller/fuzzy-bits
Fuzzer support
Diffstat (limited to 'templates/vsprojects/grpc.sln.template')
-rw-r--r--templates/vsprojects/grpc.sln.template2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/vsprojects/grpc.sln.template b/templates/vsprojects/grpc.sln.template
index dbbb2c2ad1..ded98383da 100644
--- a/templates/vsprojects/grpc.sln.template
+++ b/templates/vsprojects/grpc.sln.template
@@ -2,6 +2,6 @@
--- |
<%namespace file="sln_defs.include" import="gen_solution"/>\
<%
- solution_projects = [p for p in vsprojects if p.build not in ['protoc', 'test'] and p.language in ['c', 'c++'] and p.vs_proj_dir == '.' and not (p.build == 'private' and p.language == 'c++')]
+ solution_projects = [p for p in vsprojects if p.build not in ['protoc', 'test', 'fuzzer'] and p.language in ['c', 'c++'] and p.vs_proj_dir == '.' and not (p.build == 'private' and p.language == 'c++')]
%>\
${gen_solution(solution_projects, use_dlls='yes')}