Bugs item #1165416, was opened at 2005-03-17 11:13
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=474851&aid=1165416&group_id=54790

Category: Tasks
Group: cvs
Status: Open
Resolution: None
Priority: 5
Submitted By: John Cole (johnwebbcole)
Assigned to: Nobody/Anonymous (nobody)
Summary: MSM task sets DLL's to self register but not OCX's

Initial Comment:
There is a section in InstallerCreatonCommand.cs that
has the code to self register DLL's

if (filePath.EndsWith(".dll")) {
                    int hmod = LoadLibrary(filePath);
                    if (hmod != 0) {
                        int regSvr =
GetProcAddress(hmod, "DllRegisterServer");
                        if (regSvr != 0) {
                            Log(Level.Info,
"Configuring '{0}' for COM Self Registration...",
                               
Path.GetFileName(filePath));

                            // Add a record for a new
Component
                           
selfRegTable.InsertRecord(fileId, null);
                        }
                        FreeLibrary(hmod);
                    }

This should check for files ending in .ocx and mark
those as self register as well.



----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=474851&aid=1165416&group_id=54790


-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
_______________________________________________
NAntContrib-Developer mailing list
NAntContrib-Developer@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nantcontrib-developer

Reply via email to