Search:
Namespaces
Discussions
.NET v1.1
Feedback
How to add shared assembly in the add reference
Messages
Related Types
This message was discovered on
microsoft.public.dotnet.faqs
.
Responses highlighted in red are from those people who are likely to be able to contribute good, authoratitive information to this discussion. They include Microsoft employees, MVP's and others who IMHO contribute well to these kinds of discussions.
Post a new message to this list...
babu dhayal via .NET 247 (VIP)
(Type your message here)
--------------------------------
From: babu dhayal
i have deployed an assembly in the GAC by creating a strong name key and then executing a command at .NET prompt gacutil.exe -i assemblyname.dll, but when i need to add this assembly in another application, i dont find this assembly in the add reference dialog......so plz could u help me how to add it in add reference dialog?
-----------------------
Posted by a user from .NET 247 (
http://www.dotnet247.com/
)
<Id>XmrAgrWUxUK/Vdt1iM4geg==</Id>
Reply to this message...
Nelson Xu
Install an Assembly in GAC (Global Assembly Cache)
Section 1: Create a strong name for assembly:
<1> Go to command prompt;
<2> Type C:\Program Files\Microsoft Visual Studio .NET
2003\SDK\v1.1\Bin\;
<3> Type sn -k "C:\[PathInVSProject]\Projectname.snk"
<4> Add <Assembly: AssemblyKeyFile
("..\..\Projectname.snk")> to AssemblyInfo.vb in VS
project;
<Assembly: AssemblyTitle("")>
<Assembly: AssemblyDescription("")>
<Assembly: AssemblyCompany("")>
<Assembly: AssemblyProduct("")>
<Assembly: AssemblyCopyright("")>
<Assembly: AssemblyTrademark("")>
<Assembly: CLSCompliant(True)>
<Assembly: AssemblyKeyFile("..\..\projectname.snk")>
<5> Rebuild VS project(it will generate a new strong
named dll);
Section 2: Install assembly to GAC:
<1> Go back to command prompt(make sure that location
still points to C:\Program Files\Microsoft Visual
Studio .NET 2003\SDK\v1.1\Bin\;
<2> Type gacutil -I "C:\[PathToBinDirectoryInVSProject]
\projectname.dll"(if project is in release mode)
gacutil -I "C:\[PathToObj\DebugDirectoryInVSProject]
\projectname.dll"(if project is in debug mode)
Section 3: Register assembly entry in registry:
<1> Click Start - run, then type regedit to open registry;
<2> Go to
HEY_LOCAL_MACHINE\SOFTWARE\Microsoft\.NETFramework\Assembly
Folders\;
<3> Right click AssemblyFolders, then select new to
create a new key for your assembly(for example:
Security);
<4> Select Modify by right clicking Default, then enter
the location where your dll resides.
Now, you should be able to see the name of your dll from
the reference list when you open a VS project.
Good luck !
[Original message clipped]
prompt gacutil.exe -i assemblyname.dll, but when i need to
add this assembly in another application, i dont find this
assembly in the add reference dialog......so plz could u
help me how to add it in add reference dialog?
[Original message clipped]
Reply to this message...
Raja Sekhara Reddy K
Pls try to copy the dll into a folder and give that folder name in the
registry path.
as dot net ide is using to load all the assemblies from the path given in
the registry.
Reg Key Path
My Computer\HKLM\Software\Microsoft\.NetFrameWork\AssemblyFolders
set the default value of your AssemblyFolders value to your physical folder
where you have added the signed dll files.
thanks .
raj
"babu dhayal via .NET 247" <
Click here to reveal e-mail address
> wrote in message
news:
Click here to reveal e-mail address
...
(Type your message here)
--------------------------------
From: babu dhayal
i have deployed an assembly in the GAC by creating a strong name key and
then executing a command at .NET prompt gacutil.exe -i assemblyname.dll, but
when i need to add this assembly in another application, i dont find this
assembly in the add reference dialog......so plz could u help me how to add
it in add reference dialog?
-----------------------
Posted by a user from .NET 247 (
http://www.dotnet247.com/
)
<Id>XmrAgrWUxUK/Vdt1iM4geg==</Id>
Reply to this message...
Ad
MBR BootFX
Best-of-breed application framework for .NET projects, developed by Matthew Baxter-Reynolds and MBR IT
Copyright © Matthew Baxter-Reynolds 2001-2008. '.NET 247 Software Development Services' is a trading style of MBR IT Solutions Ltd.
Contact Us
-
Terms of Use
-
Privacy Policy
-
www.dotnet247.com