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
I'm using Docfx with a solution have many project but some project cannot generate metadata.
Detail error: "Extract metadata exception: error extracting metadata for ... System InvalidOperationException: Unexpected membertype...Add reference symbol..."
I don't have any clue to solve this, please help me.
Thanks.
Tung
The text was updated successfully, but these errors were encountered:
After debug with code, I've realized error from VisitorHelper.GetMemberTypeFromTypeKind
We have VB.NET project and have many Module but this function doesn't have Module in Select Case so we have exception.
I've edit to include Module in case Class and have successed. I don't know it has any side effect with the rest of code but it work for me now. switch (typeKind) { case TypeKind.Class: case TypeKind.Module: return MemberType.Class;
Hi all,
I'm using Docfx with a solution have many project but some project cannot generate metadata.
Detail error: "Extract metadata exception: error extracting metadata for ... System InvalidOperationException: Unexpected membertype...Add reference symbol..."
I don't have any clue to solve this, please help me.
Thanks.
Tung
The text was updated successfully, but these errors were encountered: