I think they are setup corectly because if i use the methodes in class library then it shows the summaries but if i use the dll file generated by the class library project in some project it doesn't. Here this is one of the methodes that has the summary (discription) of the method.
Code:
''' <summary>
''' Gets the last Api error message.
''' </summary>
Public Function GetLastApiError() As String
Dim message As String = Nothing
Dim eCode As Integer = Kernel32.GetLastError()
If eCode > 0 Then
Kernel32.FormatMessage( _
Kernel32.FORMAT_MESSAGE_ALLOCATE_BUFFER _
Or Kernel32.FORMAT_MESSAGE_FROM_SYSTEM _
Or Kernel32.FORMAT_MESSAGE_IGNORE_INSERTS, _
0, eCode, Kernel32.LANG_NEUTRAL, message, 0, 0)
End If
Return message
End Function
It spouse to show the summary as in the attached image