Skip to content

Commit 1fbf0bb

Browse files
Examples are gone
1 parent 351c47c commit 1fbf0bb

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

dist.sh

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -189,24 +189,17 @@ function dist-target-framework {
189189
### Overwrite Local.props with settings specific to dist
190190
gen-props Dist-$TARGET_FRAMEWORK.props.in ./Local.props
191191

192-
mkdir -p tmp/dist/bin tmp/dist/projects/examples
192+
mkdir -p tmp/dist/bin
193193

194194
### Clean
195195
$MSBUILD /verbosity:quiet RabbitMQDotNetClient.sln /t:Clean /property:Configuration="Release"
196196

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-
201197
### Build
202198
$MSBUILD /verbosity:quiet RabbitMQDotNetClient.sln /t:Build /property:Configuration="Release"
203199

204200
### Copy bin files to be zipped to tmp/dist/
205201
cp projects/client/RabbitMQ.Client/build/bin/RabbitMQ.Client.xml tmp/dist/bin/
206202
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
210203
test "$BUILD_WCF" && cp projects/wcf/RabbitMQ.ServiceModel/build/bin/RabbitMQ.ServiceModel.dll tmp/dist/bin/
211204
cp-license-to tmp/dist/
212205

0 commit comments

Comments
 (0)