wohoo !- who said NAntContrib was dead ? Thanks for all the recent patches guys. Keep them coming.
Ian


Thanks Kræn,

I've updated both of the msi/msm task files to include the new
"checkinterop" attribute, and I've applied the change that you specified
below, to compare typelib filenames as case insensitive.  Also, I've updated
the wiki to address the interop issue.

Jim


-----Original Message-----
From: Kræn Munck [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 17, 2003 12:20 PM
To: 'Jim'; [EMAIL PROTECTED]
Subject: RE: [NAntC-Dev] MSITask CheckAssemblyForCOMInterop



Hi Jim,


That would be great. My needs would be covered simply by adding it to
the fileoverride element, so I'm a happy camper. :)  Adding it to the
component element too just adds to the power of it (in a controlled
fashion), so no complaints here.

Btw: ran into an associated issue with typelibs. Registered typelibs are
recognized by comparing filename and path of the typelib in question to
the ones in the registry. Problem is that it uses case sensitive
comparison. I had it missing my typelib because of this. A simple fix
should do the trick:

Somewhere around line 4300 in MSITask.cs, change

if (curTypeLibFileName == typeLibFileName)

to

if (String.Compare(curTypeLibFileName, typeLibFileName, true) == 0)

I could of course see to it that I gave the regasm task the accurate
path ("Bin" instead of "bin" in my case), but...

Thanks,
Kræn



-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
NAntContrib-Developer mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nantcontrib-developer







------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ NAntContrib-Developer mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/nantcontrib-developer

Reply via email to