i want to publish my web site using msbuild command line.my requirement is below mentod
get the latest code from sever and stored in specified folder.this is done by folloing code
<Target Name="GetSource"> <Message Text="Checking out trunk into $(SourceDirectory)" /> <SvnCheckout RepositoryPath="$(SvnCheckoutPath)" LocalPath="$(CheckOutPath)" UserName="aaa" Password="aa"> <Output TaskParameter="Revision" PropertyName="Revision" /> </SvnCheckout> <Message Text="Have got revision: $(Revision)"/> </Target>
i have achived to get update code in specified folder.(1st reqirement is done)
2.build 3.publish to spcific path
so could you please tell me how to achieve 2 and 3 requirement.??