.NET 2.0 GAC 的位置:
c:\windows\assembly
(32bit and 64bit?)
.NET 4.0 GAC 的位置:
c:\windows\Microsoft.NET\assembly\GAC_32
(32bit only)
c:\windows\Microsoft.NET\assembly\GAC_64
(64bit only)
c:\windows\Microsoft.NET\assembly\GAC_MSIL
(32bit & 64bit?)
c:\windows\assembly
(32bit and 64bit?)c:\windows\Microsoft.NET\assembly\GAC_32
(32bit only)c:\windows\Microsoft.NET\assembly\GAC_64
(64bit only)c:\windows\Microsoft.NET\assembly\GAC_MSIL
(32bit & 64bit?)
This article describes how to generate a strong name for an assembly, and how to install a .dll file in the Global Assembly Cache (GAC). With the GAC, you can share assemblies across many applications. The GAC is automatically installed with the .NET runtime. Components are typically stored in C:\WINNT\Assembly.
To install an assembly in the GAC, you must give the assembly a strong name. The name is a cryptographic hash-key, or signature. This strong name ensures correct component versioning. This helps prevent components that have the same name from conflicting with each other, or from being incorrectly used by a consuming application.
Requirements
The following list outlines the recommended hardware, software, network infrastructure, and service packs that are required:- Administrator rights to the computer where the shared assembly is being installed
This article assumes that you are familiar with the following topics:
- General familiarity with assemblies in .NET.
- General familiarity with the use of tools at the command prompt.
Global Assembly Cache
To create a small Class Library project by using Visual Studio, to generate a strong name, and to install the .dll file of the project in the GAC, follow these steps:- In Visual Studio, create a new Visual C# Class Library project, and name the project GACDemo.
- You must use a strong name. To generate this cryptographic key pair, use the SN Tool. This tool is located in the \bin subdirectory where the .NET Framework Solution Developer Kit (SDK) is installed. The SN Tool is easy to use. The command-line statement takes the followingsn -k "[DriveLetter]:\[DirectoryToPlaceKey]\[KeyName].snk"Note In Visual Studio 2005 and in later versions of Visual Studio, you can use the IDE project properties to generate a key pair and sign your assembly. Then, you can skip step 3 and step 4 and also skip making any code changes to the AssemblyInfo.cs file.
To use the IDE project properties to generate a key pair and sign your assembly, follow these steps:- In Solution Explorer, right-click GACDemo, and then click Properties.
- Click the Signing tab, and then click to select the Sign the assembly check box.
- In the Choose a strong name key list, click <New...>.
- Type GACkey.snk as the key file name, click to clear the Protect my key file with a password check box, and then click OK.
- Press CTRL+SHIFT+B to compile the project.
- Create a directory named GACKey in C:\ so that you can easily locate the key, and access the key at the command prompt.
Note For most users, the .NET tools are located in C:\Program Files\Microsoft.NET\FrameworkSDK\Bin. Before you type the following SN command, you may want to copy this similar path on your computer to the .NET bin directory. Type cd at the command prompt, right-click to paste the path, and then press ENTER to quickly change to the directory where the SN Tool is located.
Type the following:sn -k "C:\GACKey\GACkey.snk" - A key is generated, but it is not yet associated with the assembly of the project. To create this association, double-click the AssemblyInfo.cs file in Visual Studio .NET Solution Explorer. This file has the list of assembly attributes that are included by default when a project is created in Visual Studio .NET. Modify the AssemblyKeyFile assembly attribute in the code as follows:[assembly: AssemblyKeyFile("C:\\GACKey\\GACKey.snk")]Compile the project by clicking CTRL+SHIFT+B. You do not have to have any additional code to install a .dll file in the GAC.
- You can install the .dll file by using the Gacutil tool or by dragging the .dll file to the appropriate folder. If you use the Gacutil tool, you can use a command that resembles the following:gacutil -I "[DriveLetter]:\[PathToBinDirectoryInVSProject]\gac.dll"To drag the file, open two instances of Windows Explorer. In one instance, find the location of the .dll file output for your console project. In the other instance, find c:\[SystemRoot]\Assembly. Then, drag your .dll file to the Assembly folder.
沒有留言:
張貼留言