views:

139

answers:

2

I have a msdeploy in my nant script(Team City) that is working except it is copying some folders that I do not want to copy. What command will skip these directories? I tried: and

None of these commands seem to work and the Build scripts directory is still copied fromm source directory to destination directory? The msbuild does a sync and I specify both -source and -dest as contentPath

Thank you

A: 

You need to look at the "skip" parameter.

Documentation is available here: http://technet.microsoft.com/en-us/library/dd569089(WS.10).aspx

Daniel Crowe
+1  A: 

I have a TeamCity nant build script and the one that worked for me in the end was:

<arg value='-skip:objectName=dirPath,absolutePath="\\published"' />

The directory to skip was \published so notice that I had to escape the \ I also found that a directory like webroot\app.domain.feature had to be escaped like: webroot\\app\.domain\.feature

Jack Smit