Re: [NAnt-users] how to publish or output to a directory with msbuildtask

2008-09-07 Thread spatemp spatemp
Thank you all for replying. I went ahead and created web deployment project for my Web site. This site use to be Web Site type of project and recently I converted to Web Application type of project. When I did a build using Web Deployment project, and deployed to Windows 2003 server, I am

Re: [NAnt-users] how to publish or output to a directory with msbuildtask

2008-09-04 Thread Bob Archer
I think the easiest way to do this is to set up a build configuration in your solution that specifies where you want the output to go to. Other than that you can just use the copy task after the msbuild task to move your files. You may also want to look at creating a web deployment

Re: [NAnt-users] how to publish or output to a directory with msbuildtask

2008-09-04 Thread spatemp spatemp
ok. So, by default Output path is set to bin\ folder and the solution is doing the build on say Release configuration. By setting output path to some folder other then say bin\, will it copy all .aspx etc.. for web application. Basically I am looking for what publishing a site does from MSBUILD.

Re: [NAnt-users] how to publish or output to a directory with msbuildtask

2008-09-04 Thread Bob Archer
See answers inline below. From: spatemp spatemp [mailto:[EMAIL PROTECTED] Sent: Thursday, September 04, 2008 3:07 PM To: Bob Archer Cc: nant-users@lists.sourceforge.net Subject: Re: [NAnt-users] how to publish or output to a directory with msbuildtask ok.