Re: [nant-dev] License task fix - patch included

2003-09-16 Thread Sascha Andres
Hi, here's a first version. It createsthe license file as it should - at least it runs OK here. I attached the new LicenseTask.cs -sa -- sa at programmers-world dot com http://www.livingit.de Bookmarks online: http://www.mobile-bookmarks.info Soon available in english The

[nant-dev] License task fix - patch included

2003-09-15 Thread Sascha Andres
Hi, after a while looking where the error was, I reworked my changes, did a few comments and a diff file for patching. You may want to take a look at it - I did not created a new AppDomain, but it is functionally on my system now. If this is correct, it could be submitted to CVS. -sa -- sa at

Re: [nant-dev] License task fix - patch included

2003-09-15 Thread Ian MacLean
It would be better if it did load a new appdomain. Otherwise every assembly loaded will hang around until NAnt terminates. See the assemblyinfo task ( AssemblyInfoTask.cs) for a simple example of the spawning app-domain technique. Ian Hi, after a while looking where the error was, I reworked

Re: [nant-dev] License task fix - patch included

2003-09-15 Thread Sascha Andres
Hi, * Ian MacLean wrote on 16.09.2003 (01:17): It would be better if it did load a new appdomain. Otherwise every assembly loaded will hang around until NAnt terminates. See the assemblyinfo task ( AssemblyInfoTask.cs) for a simple example of the spawning app-domain technique. I'll have a