By Joe Brinkman on
8/27/2008 12:42 AM

While catching up on blogs this morning I ran across a little PowerShell gem on
Walking Dependencies in Powershell. Chris outlines a problem that has popped up a few times in DotNetNuke. Usually it revolves around CountryListBox or DotNetNuke.WebUtility. Finding the offending assembly is always trial and error. Chris’s solution should help resolve that issue. I found a few minor bugs in Chris’s script which I have fixed. The reflection call is a static method and is missing a “]::” and the Convert-Path is unneeded if you call ReflectionOnlyLoadFrom with $_.FullName (this will become important in a minute). [more]
...