Hi there
One Section of my script is as follows
if(!strDestFile.search(/.*\.dll$/))
{
if(!strSourceFolder.endsWith("Folder1"))
{
UnregisterVBAssembly(strDestFile);
}
else
{
UnRegisterDotNetAssembly(strDestFile);
}
}
How do i go about editing the above section so that when both .Net and VB assemblies are there in the same folder i.e. Folder1,
the code would Choose the UnregisterVBAssembly function if the assembly is of type "VB" or Choose UnRegisterDotNetAssembly if the assembly is of type ".Net"
please advice
One Section of my script is as follows
if(!strDestFile.search(/.*\.dll$/))
{
if(!strSourceFolder.endsWith("Folder1"))
{
UnregisterVBAssembly(strDestFile);
}
else
{
UnRegisterDotNetAssembly(strDestFile);
}
}
How do i go about editing the above section so that when both .Net and VB assemblies are there in the same folder i.e. Folder1,
the code would Choose the UnregisterVBAssembly function if the assembly is of type "VB" or Choose UnRegisterDotNetAssembly if the assembly is of type ".Net"
please advice