12

我正在为 Visual Studio 开发一个自定义工具。该工具已分配给文件,在文件更改时,我收到此文件的名称,并且应该在项目中生成一些更改。我需要通过收到的文件名找到一个 ProjectItem。我发现只有一个解决方案它枚举了解决方案的每个项目中的所有项目项。但这似乎是一个巨大的解决方案。有没有办法通过文件名获取项目项而不枚举?

这是我对 IVsSingleFileGenerator 的 Generate 方法的实现

public int Generate(string sourceFilePath, string sourceFileContent, string defaultNamespace, IntPtr[] outputFileContents, out uint output, IVsGeneratorProgress generateProgress)
{
    var dte = (EnvDTE.DTE)Package.GetGlobalService(typeof(EnvDTE.DTE));

    ProjectItem projectItem = null;

    foreach (Project project in dte.Solution.Projects)
    {
        foreach (ProjectItem item in project.ProjectItems)
        {
            var path = item.Properties.Item("FullPath").Value;
            if (sourceFilePath.Equals(path, StringComparison.OrdinalIgnoreCase))
            {
                projectItem = item;
            }
        }               
    }

    output = 0;
    outputFileContents[0] = IntPtr.Zero;

    return Microsoft.VisualStudio.VSConstants.S_OK;
}
4

3 回答 3

8

我也在使用这个用户友好的 DTE 世界来创建指南。我没有找到更好的解决方案。基本上这些是我正在使用的方法:

迭代项目:

public static ProjectItem FindSolutionItemByName(DTE dte, string name, bool recursive)
{
    ProjectItem projectItem = null;
    foreach (Project project in dte.Solution.Projects)
    {
        projectItem = FindProjectItemInProject(project, name, recursive);

        if (projectItem != null)
        {
            break;
        }
    }
    return projectItem;
}

在单个项目中查找:

public static ProjectItem FindProjectItemInProject(Project project, string name, bool recursive)
{
    ProjectItem projectItem = null;

    if (project.Kind != Constants.vsProjectKindSolutionItems)
    {
        if (project.ProjectItems != null && project.ProjectItems.Count > 0)
        {
            projectItem = DteHelper.FindItemByName(project.ProjectItems, name, recursive);
        }
    }
    else
    {
        // if solution folder, one of its ProjectItems might be a real project
        foreach (ProjectItem item in project.ProjectItems)
        {
            Project realProject = item.Object as Project;

            if (realProject != null)
            {
                projectItem = FindProjectItemInProject(realProject, name, recursive);

                if (projectItem != null)
                {
                    break;
                }
            }
        }
    }

    return projectItem;
}

可以在这里找到我与更多片段一起使用的代码,作为新项目的指导。搜索并获取源代码..

于 2013-10-17T17:17:23.200 回答
1

可能有点晚,但使用 DTE2.Solution.FindProjectItem(fullPathofChangedFile);

于 2020-10-26T14:55:52.207 回答
0

获取 project.documents - 查找项目 - 使用 Linq 查询文件

于 2019-10-16T18:14:09.813 回答