File tree Expand file tree Collapse file tree 1 file changed +1
-8
lines changed Expand file tree Collapse file tree 1 file changed +1
-8
lines changed Original file line number Diff line number Diff line change @@ -189,24 +189,17 @@ function dist-target-framework {
189
189
# ## Overwrite Local.props with settings specific to dist
190
190
gen-props Dist-$TARGET_FRAMEWORK .props.in ./Local.props
191
191
192
- mkdir -p tmp/dist/bin tmp/dist/projects/examples
192
+ mkdir -p tmp/dist/bin
193
193
194
194
# ## Clean
195
195
$MSBUILD /verbosity:quiet RabbitMQDotNetClient.sln /t:Clean /property:Configuration=" Release"
196
196
197
- # ## Copy examples code to be zipped to tmp/dist/
198
- cp -r projects/examples/client tmp/dist/projects/examples/
199
- test " $BUILD_WCF " && cp -r projects/examples/wcf tmp/dist/projects/examples/
200
-
201
197
# ## Build
202
198
$MSBUILD /verbosity:quiet RabbitMQDotNetClient.sln /t:Build /property:Configuration=" Release"
203
199
204
200
# ## Copy bin files to be zipped to tmp/dist/
205
201
cp projects/client/RabbitMQ.Client/build/bin/RabbitMQ.Client.xml tmp/dist/bin/
206
202
cp projects/client/RabbitMQ.Client/build/bin/RabbitMQ.Client.dll tmp/dist/bin/
207
- for example in $( ls projects/examples/client) ; do
208
- cp projects/examples/client/$example /build/bin/$example .exe tmp/dist/bin/
209
- done
210
203
test " $BUILD_WCF " && cp projects/wcf/RabbitMQ.ServiceModel/build/bin/RabbitMQ.ServiceModel.dll tmp/dist/bin/
211
204
cp-license-to tmp/dist/
212
205
You can’t perform that action at this time.
0 commit comments