You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
System.Diagnostics.Debug.WriteLine("AssemblyResolveSuccess: "+args.Name+" to version "+assembly.GetName().Version.ToString()+" at "+sPath+" in "+DateTime.Now.Subtract(dtStart).TotalMilliseconds+"ms");
688
+
Log.Debug("AssemblyResolveSuccess: "+args.Name+" to version "+assembly.GetName().Version.ToString()+" at "+sPath+" in "+DateTime.Now.Subtract(dtStart).TotalMilliseconds+"ms");
692
689
returnassembly;
693
690
}
694
691
}
695
-
System.Diagnostics.Debug.WriteLine("AssemblyResolveFail: "+args.Name+" in "+DateTime.Now.Subtract(dtStart).TotalMilliseconds+"ms");
if(assembly.GetName().Version.Major==assemblyname.Version.Major)//some SSIS subfolders have multiple versions of the assembly... make sure we match the major version number... it appears there may be an assembly redirect in operation, but this is probably safer
698
+
{
699
+
Log.Debug("AssemblyResolveSuccessSSIS: "+args.Name+" to version "+assembly.GetName().Version.ToString()+" at "+sPath+" in "+DateTime.Now.Subtract(dtStart).TotalMilliseconds+"ms");
700
+
returnassembly;
701
+
}
702
+
}
703
+
}
704
+
Log.Debug("AssemblyResolveFail: "+args.Name+" in "+DateTime.Now.Subtract(dtStart).TotalMilliseconds+"ms");
0 commit comments