Hi there,
The issue NVELOCITY-ISSUE-34 was just created by Vadim (spassm).
Key: NVELOCITY-ISSUE-34
Summary: Error in ResourceLocator
Type: Bug
Importance: High
Description:
.ctor = public ResourceLocator(String path, String filename)
In loop:
foreach (Assembly a in assemblies)
{
String prefix = a.FullName.Substring(0,
a.FullName.IndexOf(",")).ToLower();
/// exception, when assemblies contains dynamic assembly
String[] names = a.GetManifestResourceNames();
foreach (String s in names)
{
if (s.ToLower().Equals(fn) || s.ToLower().Equals(prefix + "." + fn))
{
this.filename = s;
assembly = a;
isResource = true;
}
}
}
For more, see
http://support.castleproject.org/projects/NVELOCITY/issues/view/NVELOCITY-ISSUE-34
--
donjon
by Castle Stronghold
http://www.castle-donjon.com
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Castle Project Development List" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/castle-project-devel?hl=en
-~----------~----~----~----~------~----~------~--~---