I created a .dll with xml commented functions and subs, like:
''' <summary>
''' Gets the Path of this assembly
''' </summary>
''' <returns>Assemblypath</returns>
''' <remarks></remarks>
Public Function GetactiveProgrammPath() As String
Dim exeName, exedir As String
exeName = Reflection.Assembly.GetExecutingAssembly.Location
exedir = Path.GetDirectoryName(exeName)
Return exedir
End Function
I reference the .dll in another project and cannot see the xml comments. Any idea why? I followed the instructions here