Re: [NAnt-users] Pre/Post Build Events

2006-06-09 Thread Giscard Biamby
les. The staging portion is > very easy to do in > > NAnt, as you can easily filter out exactly what you > want to copy > > (exe/dll/pdb/config etc.). > > > > Marc Towersap Sr. SCM Engineer > > > > - Original Message > >

Re: [NAnt-users] Pre/Post Build Events

2006-06-09 Thread Marc Towersap
If you've identified the offending circular references, can you delete as you go?  Clean everything that isn't a circular dependency, build one piece, delete the old circular reference file(s), build the next piece, delete more old circular reference file(s) etc.?  If you exit from VS (either via G

Re: [NAnt-users] Pre/Post Build Events

2006-06-09 Thread Adam Gritt
I do have a clean setup for the script but I can't do a clean of the final destination as the original developers allowed circular references to creap into the project and until I am able to get those cleaned out I can't do a complete clean of the final destination folder.  Thanks for the help thou

Re: [NAnt-users] Pre/Post Build Events

2006-06-09 Thread Marc Towersap
Have you tried cleaning out everything prior to building, both in local bins and in the final destination build?  Relying on VS's cleans probably just cleans out the local bins (except for asp.net 2.0 apps).  If you delete all the built files whereever they end up at during a build prior to buildin

Re: [NAnt-users] Pre/Post Build Events

2006-06-09 Thread Adam Gritt
I have the build file set up as follows:            ...    We are running a dis-jointed environment.  Our code is in VSS but due to the fact that the network is Novell and we have offices in Wisconsin and Florida, those in the Florida office have trouble accessing VSS because it is slow so

Re: [NAnt-users] Pre/Post Build Events

2006-06-09 Thread Giscard Biamby
You can write a program that goes through all your projects' .csproj files and removes the value for the PostBuildEvent attribute under the VisualStudioProject-->CSHARP-->Build-->Settings xml node. If you need the ability to re-enable the post build event for when developers are working from the

Re: [NAnt-users] Pre/Post Build Events

2006-06-09 Thread Adam Gritt
The problem I am running into is that some of the build events we have copy files to the final bin directory from the local bin directories.  When some projects build it gives an error saying that the build event failed because it could not overwrite a file because of a sharing violation.  In the e

RE: [NAnt-users] Pre/Post Build Events

2006-06-01 Thread Gert Driesen
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of > Adam Gritt > Sent: woensdag 31 mei 2006 17:56 > To: nant-users@lists.sourceforge.net > Subject: [NAnt-users] Pre/Post Build Events > > I am working with about 190 projects that we are converting