2014-05-06 57 views
0

我創建了一個.dll使用XML註釋功能和潛艇,如:不能看到DLL XML註釋中的一個項目

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

你真的建立了xml文件嗎?你鏈接到的頁面似乎沒有提到這一點。

右鍵單擊您的項目 - >設置 - >生成 - >檢查「Xml文檔文件」。

當您構建項目時,現在應生成MyProject.dllMyProject.xml文件。 您的其他項目現在應該能夠找到xml文檔。

相關問題