J
JH
Is it possible to load an assembly at runtime using reflection where the dll
does not have a strong name and is not in the GAC?
If not, is it possible to put an assembly into the GAC without a strong
name?
I'm using the code below (which fails on the load as it needs an assembly
name not a full path)
// Get list of dll's in a specific path
FileInfo[] dllList = GetAssemblyNames(szAssemblyPath);
foreach (FileInfo fi in dllList)
{
Assembly asm = Assembly.Load(fi.FullName);
does not have a strong name and is not in the GAC?
If not, is it possible to put an assembly into the GAC without a strong
name?
I'm using the code below (which fails on the load as it needs an assembly
name not a full path)
// Get list of dll's in a specific path
FileInfo[] dllList = GetAssemblyNames(szAssemblyPath);
foreach (FileInfo fi in dllList)
{
Assembly asm = Assembly.Load(fi.FullName);