I have a C# web application that I have developed using Visual Studio 2010
and commit changes to a VisualSVN
repository using the AnkhSVN
plugin for Visual Studio.
I have created a Jenkins
project that checks the repository every five minutes for new commits and then builds the web application, using the MSBuild plugin
, if it sees a change.
This is working fine, however it is building the application to C:\Program Files (x86)\Jenkins\workspace\[Jenkins Project Name]\[Web Application Name]
and I would like it to build to D:\Web\[Web Application Name]
as this is the directory my IIS site is pointing at. (Both locations are on the same server)
Is there a setting in the Jenkins project where I can change this or do I have to add a build step that copies to a different location using a batch command or something similar?
Many thanks in advance.