Hello,

I encounted a problem that the recipe cannot be bound to the project item in a customized project type within solution folder.

I create my customized project type by using Visual Sudio SDK. And I'm trying to bind some recipes to some project item in the customized project'. If the customized project type template reference was bound to root of the solution explorer, the recipes worked fine. However, if the customized project type template reference was bound to a solution folder such as:
<TemplateReference Name="Projects\MyProject\MyProject.vstemplate" Target="\MyFolder" />
Then once I added MyProject to "\MyFolder" in the guidance solution, the recipes cannot be bound to the project item in the project, and the VS status bar always said "Updating Reference to MyProject from package MyPackage".
After some investigation, I found thatI cannot navigate to the customized project within solution folder when I wastrying toiterate the nodes in the solution. EnvDTE.Project.ParentProjectItem is null for customized project within solution folder, thecorrect value of ParentProjectItem should becertain ProjectItem of the solution folder "MyFolder". In other hand, MyFolder.ProjectItems.Item(0).Object is null. I wond whether this issue causes the recipe cannot be bound to project item in my customized project.

Thanks,
Avery