gacutil & GAC install

If you are looking for a way to install into the GAC without using a Microsoft Installer package (msi), here are a couple of ways to do it.

Option 1:
Bundle the gacutil.exe. This will require a library, msvcr71.dll. The sum total is about 440K to be added to your install. They’ll compress down to about 200K. This seems to be the most frequently used mechanism. You have to redistribute gacutil.exe because its part of the Microsoft.NET SDK and not installed on most people’s machines.

Option 2:
Write your own c# code to do it. After searching for a very long time, I did manage to find some obscure APIs to do the same thing. The good news is that now you can write managed code to do this, and it only takes about 16K of code. Woo hoo!

    System.EnterpriseServices.Internal.Publish foo = new System.EnterpriseServices.Internal.Publish();
    foo.GacInstall(“myassembly.dll”);

If you want Microsoft’s gory details of the GAC API, you can check here.

Lookout

Its been a while since I posted here, so I figured I’d write a note.

Released a new version of Lookout today – finally one that should be pretty stable. 0.89. We even sent out a little end-user poll to see how people like it. So far, the responses are pretty good. Its probably all relatives and friends saying what I want to hear? 🙂 Fortunately, I don’t know that many people!