How to see my .dll listed in 'Add reference' dialog box? I don't want to go 'Add reference/Browse' to find my dll.
Addition: I created my.dll and add it in GAC thru .net framework configuration utility.
regard j
Printable View
How to see my .dll listed in 'Add reference' dialog box? I don't want to go 'Add reference/Browse' to find my dll.
Addition: I created my.dll and add it in GAC thru .net framework configuration utility.
regard j
What's the big deal about going to Add Reference... Browse...?
Once you build your class library... you should be able to click browse... then browse to the folder that contains your .dll (which should be the BIN folder of the solution folder that was created by the .Net IDE).... and select it, hit ok... that takes about 5 seconds...
Even if you add your DLL into the GAC, you still have to browse to select a local copy of the DLL. It doesn't actually use the local copy unless it is not found in the GAC.
You have to add a setting to the registry if you want to show our assembly in the 'Add Reference' dialog box. For more info see http://support.microsoft.com/default...en-us%3b306149
tks.
regard j
Sweet deal. Thanks for the link.