@@ -169,7 +169,7 @@ function src-dist {
169
169
mkdir tmp/srcdist
170
170
mv tmp/$NAME_VSN tmp/srcdist/
171
171
cd tmp/srcdist
172
- zip -r ../../$RELEASE_DIR /$NAME_VSN .zip . -x \* .snk \* .resharper \* .csproj.user
172
+ zip -q - r ../../$RELEASE_DIR /$NAME_VSN .zip . -x \* .snk \* .resharper \* .csproj.user
173
173
cd ../..
174
174
175
175
# ## Remove tmp/srcdist
@@ -197,14 +197,14 @@ function dist-target-framework {
197
197
mkdir -p tmp/dist/bin tmp/dist/projects/examples
198
198
199
199
# ## Clean
200
- $MSBUILD RabbitMQDotNetClient.sln /t:Clean /property:Configuration=" Release"
200
+ $MSBUILD /verbosity:quiet RabbitMQDotNetClient.sln /t:Clean /property:Configuration=" Release"
201
201
202
202
# ## Copy examples code to be zipped to tmp/dist/
203
203
cp -r projects/examples/client tmp/dist/projects/examples/
204
204
test " $BUILD_WCF " && cp -r projects/examples/wcf tmp/dist/projects/examples/
205
205
206
206
# ## Build
207
- $MSBUILD RabbitMQDotNetClient.sln /t:Build /property:Configuration=" Release"
207
+ $MSBUILD /verbosity:quiet RabbitMQDotNetClient.sln /t:Build /property:Configuration=" Release"
208
208
209
209
# ## Copy bin files to be zipped to tmp/dist/
210
210
cp projects/client/RabbitMQ.Client/build/bin/RabbitMQ.Client.xml tmp/dist/bin/
@@ -217,7 +217,7 @@ function dist-target-framework {
217
217
218
218
# ## Zip tmp/dist
219
219
cd tmp/dist
220
- zip -r ../../$RELEASE_DIR /$NAME_VSN -$TARGET_FRAMEWORK .zip .
220
+ zip -q - r ../../$RELEASE_DIR /$NAME_VSN -$TARGET_FRAMEWORK .zip .
221
221
cd ../..
222
222
223
223
# ## Remove tmp/dist
@@ -269,7 +269,7 @@ function gendoc-dist {
269
269
# ## Zip ndocproc's output
270
270
if [ " $ZIP_TMP_XML_DOC_FILENAME " ]; then
271
271
cd tmp/gendoc/xml
272
- zip -r ../../../$RELEASE_DIR /$ZIP_TMP_XML_DOC_FILENAME .
272
+ zip -q - r ../../../$RELEASE_DIR /$ZIP_TMP_XML_DOC_FILENAME .
273
273
cd ../../..
274
274
fi
275
275
@@ -285,7 +285,7 @@ function gendoc-dist {
285
285
286
286
# ## Zip tmp/gendoc
287
287
cd tmp/gendoc
288
- zip -r ../../$RELEASE_DIR /$ZIP_DESTINATION_FILENAME .
288
+ zip -q - r ../../$RELEASE_DIR /$ZIP_DESTINATION_FILENAME .
289
289
cd ../..
290
290
291
291
# ## Remove tmp/gendoc
0 commit comments