See this article "Avoid DevPath" for info on why you should avoid DEVPATH
http://blogs.msdn.com/suzcook/archive/2003/08/15/57238.aspx I suggest that you do it the simple way - compile the all your apps/libraries to a single directory using it as both a target and a reference source and forget the GAC at all. I do it all the time using simple NAnt scripts and it works fine. Anyway, GAC isn't used during compilation, so you always know what you're compiling against. For the testing part, just make sure that the GAC isn't spoiled by any weird versions of the components you want to run. This can be done with a simple shell script that uses "gacutil" to remove unwanted assemblies. Jarek ----- Original Message ----- From: "Stefan Bodewig" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Monday, September 06, 2004 5:22 PM Subject: Re: [nant-dev] Re: NAnt > On Mon, 6 Sep 2004, Jaroslaw Kowalski <[EMAIL PROTECTED]> wrote: > > > I think that you cannot avoid GAC with .NET because of the order in > > which the assebmlies are located: > > > > http://www.awprofessional.com/articles/article.asp?p=30601&seqNum=6 > > Thank you for that URL. > > In Gump's case we probably can live with making sure that "our" version > is used instead of the one in the GAC and DEVPATH seems to be a way to > achieve that (I've only read the first paragraph of that article, > though 8-). > > Does anybody know whether Mono supports DEVPATH? > > Cheers > > Stefan > > > ------------------------------------------------------- > This SF.Net email is sponsored by BEA Weblogic Workshop > FREE Java Enterprise J2EE developer tools! > Get your free copy of BEA WebLogic Workshop 8.1 today. > http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click > _______________________________________________ > nant-developers mailing list > [EMAIL PROTECTED] > https://lists.sourceforge.net/lists/listinfo/nant-developers > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
