When I want to do web deployments as part of my continuous integration build process, I often need to exclude certain files such as the Web.config from being deployed to my staging or QA environments.
Therefore, I use Robocopy and PowerShell to accomplish this.
Using this simple little PowerShell script, you can use Robocopy to exclude files from your deployments as well:
Therefore, I use Robocopy and PowerShell to accomplish this.
Using this simple little PowerShell script, you can use Robocopy to exclude files from your deployments as well:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Param | |
( | |
[Parameter(Mandatory=$true)] | |
$SrcDir, | |
[Parameter(Mandatory=$true)] | |
$DestDir | |
) | |
$ExclusionFiles = @("Web.config") | |
#Copy over the directories | |
robocopy "$SrcDir" "$DestDir" /e /XF $ExclusionFiles |
No comments:
Post a Comment