Describes how to install assemblies in the .NET Compact Framework global assembly cache. Steps to install assemblies in .NET CF in GAC:
- Put assemblies in a directory on the device. - Create a text file which includes every file and it’s path on a separate line. - Save the file with .gac extension in the windows directory on the device.
Eg:
\Program Files\App\SomeFile.dll \Program Files\App\AnotherFile.dll
Execute the application, and .NET CF will move the assemblies into the GAC.
|