adding to "Add Reference" dialog

  • Thread starter Thread starter Brad Quinn
  • Start date Start date
B

Brad Quinn

Is there a way to add an assembly to the .NET tab of
the "Add Reference" dialog?
 
Thanks Nick,

Here is a post-build step that I whipped up;

for %%a in ($(TargetDir)*.dll) do gacutil /i "%%a" /f
echo Windows Registry Editor Version
5.00>$(ProjectName).reg
echo
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\.NETFramework\Assem
blyFolders\$(ProjectName)]>>$(ProjectName).reg
set td=$(TargetDir)
echo @="%td:\=\\%">>$(ProjectName).reg
regedit $(ProjectName).reg

Watch out for word wrap.
-----Original Message-----
Brad,

Check out the knowledge base article
titled "INFO: How to Display an Assembly in the Add
Reference Dialog Box" located at (watch for line wrap):
http://support.microsoft.com/default.aspx?scid=kb;en- us;q306149

Hope this helps.

- Nicholas Paldino [.NET/C# MVP]
- nick(d0t)paldino=At- exisconsulting'dot|com
.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top