RE: [Nant-users] Best practice for maintaining project files on build server

2005-01-18 Thread Ryan Davis
2. To get around this problem, I created a "lib" folder in my project, and added the reference to there. This makes a relative path in the project file, so whenever someone gets the project, they automatically have the libraries. I think it might do that for anything in the solution directory

Re: [Nant-users] Best practice for maintaining project files on build server

2005-01-15 Thread Kevin Williams
I/We keep references under source control. This way when project files are checked out the user receives all dependencies. The references in the project files are relative references, so they always resolve correctly. Manish Jain wrote: I would like to know best practice as well as options avail