Assembly Is Not Added to the GAC
- Last UpdatedMar 17, 2016
- 1 minute read
If the assembly is not currently added to the GAC, the user is required to specify the physical location of the assembly itself to load the assembly from the specified path.
For example,
C:\Temp\TestHooks\TestHooks\bin\Debug\TestHooks.dll;TestHooksNamespace.TestHooksClass;TestHooksMethod
represents the assembly name as TestHooks.dll, located at the path C:\Temp\TestHooks\TestHooks\bin\Debug\, and that has the namespace TestHooksNamespace, class name TestHooksClass, and the method name TestHooksMethod.