I have long used MSBuild scripts for setting up my continuous integration builds, but I have started migrating some of my MSBuild scripts over to psake to make the code easier to test and maintain.
One of the problems I struggled with was setting up publishing for a Web Application. Apparently, this is a bane for many developers or DevOps team members, so I was able to find a StackOverflow article which described a partial solution for my needs: http://stackoverflow.com/questions/4768190/how-to-publish-web-site-using-psake
Of course, this particular snippet did not exactly work for my needs, so I tweaked it to more closely suit my needs as follows:
Of course, you will need to set up a Publishing Profile for your web application, in order for this particular script to work, but once that has been set up, you simply pass the publishUrl property in order to alter the publishing output path!
That is all there is to it!
One of the problems I struggled with was setting up publishing for a Web Application. Apparently, this is a bane for many developers or DevOps team members, so I was able to find a StackOverflow article which described a partial solution for my needs: http://stackoverflow.com/questions/4768190/how-to-publish-web-site-using-psake
Of course, this particular snippet did not exactly work for my needs, so I tweaked it to more closely suit my needs as follows:
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
properties { | |
$testMessage = 'Executed Test!' | |
$compileMessage = 'Executed Compile!' | |
$cleanMessage = 'Executed Clean!' | |
$outputDirectory = "..\.build" | |
$temporaryOutputDirectory = "$outputDirectory\temp" | |
$buildConfiguration = "Release" | |
$buildPlatform = "Any CPU" | |
$publishedxUnitTestsDirectory = "..\.build" | |
$publishingOutputDirectory = "..\published" | |
$destDirectory = "..\webpublished" | |
$publishProfile = "FileSystem" | |
} | |
task Deploy -description "Publishes and deploys the website" { | |
Write-Host "Publishing Web Application Project" | |
msbuild $webappProjectFile /t:Rebuild "/p:Configuration=$buildConfiguration;UseWPP_CopyWebApplication=$true;publishUrl=$publishingOutputDirectory;PublishProfile=$publishProfile;DeployOnBuild=$true" | |
Write-Host "Copying Web Application Project" | |
Copy-Item "$publishingOutputDirectory\*" -destination $destDirectory -Recurse -Force | |
} |
That is all there is to it!
No comments:
Post a Comment