如何获取项目下AssemblyInfo.vb文件路径。

ByVal p As EnvDTE.Project

Dim file As String = String.Empty
For Each item As EnvDTE.ProjectItem In p.ProjectItems
    If item.Name = "AssemblyInfo.vb" Then
        file = item.FileNames(0)
        Exit For
    End If
Next

posted on 2009-05-11 11:21  zqonline  阅读(620)  评论(0编辑  收藏  举报

导航