From: <ki...@mv...> - 2006-10-31 07:04:13
|
Gary, all, > Chris Weiss wrote: > > Has anything happened with this? Having to keep multiple copies of > > this file in all the source directories is drawing the ire of our > > project leads. > > > > I don't have that problem. I just use an explicit path to > the .dll in both my CC.Net and NAnt files whenever invoking > msbuild. It works fine for me. Exactly. The <logger> element on [1] isn't an assembly name, it's a type name and a /file path/, comma-separated. Not sure if this qualifies as a "fully qualified name" as the docs say. I just realized this yesterday, but it should make it possible/preferable to move the ThoughtWorks.CruiseControl.MsBuild.dll into a common tools dir, like so: <msbuild> ... <logger>ThoughtWorks.CruiseControl.MsBuild.XmlLogger,..\..\tools\ThoughtWork s.CruiseControl.MsBuild.dll</logger> </msbuild> Cheers, - Kim [1] http://confluence.public.thoughtworks.org/display/CCNET/MsBuild+Task |