I'm having a problem adding a reference to a .NET assembly I built. Here's what I did.
- I created a .NET assembly (testlib.dll).
- I made sure it had a strong name (added a keyfile).
- I creates a WiX installation project for that assembly.
- I added Assembly='.net' and KeyPath='yes' to the File property for the assembly.
The installation works fine. I can see testlib in the GAC (C:\Windows\assembly).
I create a new .NET project and try to add a reference to testlib, but I don't see it in the .NET tab of the Add Reference dialog. How do I get it to show up there?