.NET dll does not appear in .NET tab of Add Reference window
-
Hi I apologise if people feels its duplicate as I posted this question yesrteday. But unfortunately didnt get the desired solution. I am posting here today as I hope I can get a solution today atleast!! I have a dll("sample.dll") written in .NET and I have givena strong name and installed into my system's GAC. I can see that dll ("sample.dll") into GAC ( as I have registered using GACUTIL tool). Now I expect to this dll to appear in list of dll that appears in .NET tab of Add Reference window. as I know that any GAC dll is listed in this tab. Whats going wrong here? How can I see my dll("sample.dll") into list of .NET or COM tab of Add Reference window ? Thanks in advance,
Thanks, Arindam D Tewary
-
Hi I apologise if people feels its duplicate as I posted this question yesrteday. But unfortunately didnt get the desired solution. I am posting here today as I hope I can get a solution today atleast!! I have a dll("sample.dll") written in .NET and I have givena strong name and installed into my system's GAC. I can see that dll ("sample.dll") into GAC ( as I have registered using GACUTIL tool). Now I expect to this dll to appear in list of dll that appears in .NET tab of Add Reference window. as I know that any GAC dll is listed in this tab. Whats going wrong here? How can I see my dll("sample.dll") into list of .NET or COM tab of Add Reference window ? Thanks in advance,
Thanks, Arindam D Tewary
Arindam Tewary wrote:
as I know that any GAC dll is listed in this tab.
I dont think So. .Net tab displaying the dlls from .net directory only.
Arindam Tewary wrote:
Now I expect to this dll to appear in list of dll that appears in .NET tab of Add Reference window.
You can do this by copy your dll to(.net 2.0) C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727 directory
EVEN THE WORD IMPOSSIBLE SAYS I M POSSIBLE.
-
Arindam Tewary wrote:
as I know that any GAC dll is listed in this tab.
I dont think So. .Net tab displaying the dlls from .net directory only.
Arindam Tewary wrote:
Now I expect to this dll to appear in list of dll that appears in .NET tab of Add Reference window.
You can do this by copy your dll to(.net 2.0) C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727 directory
EVEN THE WORD IMPOSSIBLE SAYS I M POSSIBLE.
Thanks Sherin. Cool ans .. It worked magically !!! :-D :-D
Thanks, Arindam D Tewary
-
Arindam Tewary wrote:
as I know that any GAC dll is listed in this tab.
I dont think So. .Net tab displaying the dlls from .net directory only.
Arindam Tewary wrote:
Now I expect to this dll to appear in list of dll that appears in .NET tab of Add Reference window.
You can do this by copy your dll to(.net 2.0) C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727 directory
EVEN THE WORD IMPOSSIBLE SAYS I M POSSIBLE.
Any idea what are dlls listed in COM tab ?
Thanks, Arindam D Tewary
-
Any idea what are dlls listed in COM tab ?
Thanks, Arindam D Tewary
I believe those are registered "COM" DLL's which can be referred.
All C# applications should call Application.Quit(); in the beginning to avoid any .NET problems.- Unclyclopedia How to use google | Ask smart questions
-
Thanks Sherin. Cool ans .. It worked magically !!! :-D :-D
Thanks, Arindam D Tewary
A better option would be putting in
Program Files\Microsoft Visual Studio 8\Common7\IDE\PublicAssemblies
All C# applications should call Application.Quit(); in the beginning to avoid any .NET problems.- Unclyclopedia How to use google | Ask smart questions
-
Any idea what are dlls listed in COM tab ?
Thanks, Arindam D Tewary
Navaneeth is right, The registered COM dlls. And you can register your dll usingn regsvr32, If it is a com dll.
EVEN THE WORD IMPOSSIBLE SAYS I M POSSIBLE.