Just noticed what looks like a bug in /Source/NetOffice/Tools/CustomUIAttribute.cs, line 67 in version 1.7.3 in that the line ending:
assemblyNamespace.Substring(resourcePath.Length - 1) };
should, I believe be:
assemblyNamespace.Substring(assemblyNamespace.Length - 1) };
Not an issue for me, or probably most people, but thought it worth mentioning just in case it causes problems for someone.
Comments: ** Comment from web user: SebastianDotNet **
assemblyNamespace.Substring(resourcePath.Length - 1) };
should, I believe be:
assemblyNamespace.Substring(assemblyNamespace.Length - 1) };
Not an issue for me, or probably most people, but thought it worth mentioning just in case it causes problems for someone.
Comments: ** Comment from web user: SebastianDotNet **
absolutely!!!
thanks for pointing this out!
i want fix this very soon and give a comment to your advise.
*Sebastian