您可以以编程方式执行“运行自定义工具”吗?在 C# 中的 ProjectItem 上?
我想知道是否可以在 VS 解决方案中的文件上执行“运行自定义工具”?我已经有了 ProjectItem 对象。
信息:C#、Visual Studio 2010 SDK
I was wondering if it is possible to execute 'Run Custom Tool' on a file in the VS Solution? I have the ProjectItem object already.
info: C#, Visual Studio 2010 SDK
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要确保选择 ProjectItem,然后运行:
You'll need to ensure that the ProjectItem is selected, and then run:
尝试将
ProjectItem
的Object
属性值转换为VSProjectItem
。如果不为 null,则只需对其调用 RunCustomTool() 即可。Try to case the
Object
property value of aProjectItem
to aVSProjectItem
. If not null, simply call RunCustomTool() on it.