r325957 may have also fixed this:

 http://issues.apache.org/jira/browse/IBATISNET-85

I suggested:

"
A fix is to replace this line:

 Stream stream =
  assembly.GetManifestResourceStream(
   fileInfo.ResourceFileName);

with this:

 Stream stream =
  assembly.GetManifestResourceStream(
   fileInfo.ResourceFileName);

 if (stream == null)
 {
 stream = assembly.GetManifestResourceStream(fileInfo.FileName);
 } 
"

which is what Gilles did. I think I suggested the fix before I was a
commiter.

--- Gilles Bayon <[EMAIL PROTECTED]> wrote:

> I have re-open your JIRA issue and now fixed it, it's in SVN, there's
> a
> problem if the project namespace differs from assembly name.
>  Cheers,
> -Gilles
> 

Reply via email to