无法在项目中看到来自dll的xml注释

时间:2014-05-06 10:06:56

标签: .net xml-comments xml-documentation

我创建了一个带有xml注释函数和subs的.dll,如:

    ''' <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

我在另一个项目中引用.dll,但看不到xml注释。知道为什么吗?我按照说明here

1 个答案:

答案 0 :(得分:1)

你真的构建了xml文件吗?您链接的页面似乎没有提到这一点。

  

右键单击您的项目 - &gt;设置 - &gt;构建 - &gt;检查&#34; Xml文档文件&#34;。

在构建项目时,您现在应该生成MyProject.dllMyProject.xml个文件。 您的其他项目应该能够立即找到xml文档。