I'm not sure if you are talking about building the VS solution file using NAnt or not.
If you just want to have the solution configured to put the build file in a specific location, then you can use a post build event in the project's build settings. ie, PostBuildEvent = 'copy "$(TargetPath)" "$(ProjectDir).."' You might want to use this instead: PostBuildEvent = 'copy "$(TargetPath)" "$(ProjectDir)/bin"' --- Rick Barter <[EMAIL PROTECTED]> wrote: > I am building a solution that puts the output into > the following > directory structure: > <project.dir>\src\bin\Release\<my_exe> > > How can I change this behaviour? I've tried > changing the output= > parameter, but to no avail. > > I want it to be placed right in: <project.dir>\bin > > Is this just a function of the solution itself or my > lack of > experience with Nant? Any help is very much > appreciated. > > rvb > > > ------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. Do > you grep through log files > for problems? Stop! Download the new AJAX search > engine that makes > searching your log files as easy as surfing the > web. DOWNLOAD SPLUNK! > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642 > _______________________________________________ > NAnt-users mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/nant-users > __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com ------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the new AJAX search engine that makes searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642 _______________________________________________ NAnt-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/nant-users
