将自定义项目类型添加到我的VS

将自定义项目类型添加到我的VS

本文介绍了将自定义项目类型添加到我的VS Isolated Shell 2010中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我通过以下操作创建了一个基本的项目系统:http://msdn.microsoft.com/en-us/library/cc512961.aspx .在实验性配置单元中效果很好.

I created a basic project system by following this: http://msdn.microsoft.com/en-us/library/cc512961.aspx. It works good in experimental hive.

然后,我按照http://msdn.microsoft.com/en-us/library/cc512961.aspx .也可以.

Then I created I a VS Isolated Shell by following http://msdn.microsoft.com/en-us/library/cc512961.aspx. It works ok too.

然后,我尝试通过遵循以下步骤将项目系统包括到我的自定义隔离外壳中 http://msdn.microsoft.com/en-us/library/ee524005.aspx .  我的自定义项目显示在新项目"对话框,但是当我单击对话框上的确定"按钮时,它给我一个错误消息 这样的版本的应用程序不支持扩展名".MyProjExt".要打开它,请尝试支持它的版本."

Then I tryied to include the project system to my custom isolated shell by followinghttp://msdn.microsoft.com/en-us/library/ee524005.aspx.  My custom project shows up on the "New Project" dialog, but when I click on the OK button on the dialog, it gives me an error msg saying "The extension '.MyProjExt' is not supported by this version of the applicaiton. To Open it, please try the version that supports it."

两个项目(隔离的shell和自定义项目系统)都在同一解决方案中.

Both projects(isolated shell and custom project system) are in the same solution.

请帮助.

此致

推荐答案

 

感谢您的信息.

据我所知,如果您根据上面粘贴的链接向隔离的外壳添加简单的VSPackage,它应该可以工作

As far as I know, if you add a simple VSPackage to isolated shell based on the link you pasted above, it should work

似乎您错过了注册中的某些内容,而孤立的shell无法识别此项目系统.

It seems that you miss something on the registration, and isolated shell doesn't recognize this project system.

在我这边进行故障排除并不容易,但是您可以参考以下示例,

It is not easy to troubleshooting on my side, but you can refer to the following sample,

这是一个集成了Ironpython项目系统的隔离外壳.

it is an isolated shell integrates Ironpython project system.

http://ironpythonstudio.codeplex.com/

希望我的回复有助于解决您的问题.

Hope my reply helps resolve your issue.


这篇关于将自定义项目类型添加到我的VS Isolated Shell 2010中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-04 22:12