Visual studio .SLN执行Exe文件/.VBS脚本
打开 Visual Studio Solution(.sln) 时如何启动 .Exe 文件或 .VBS 脚本?
How to launch .Exe file or .VBS script when visual studio solution(.sln) is opened ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将 .SLN 文件与您自己的可执行文件(而不是
devenv
)关联。在可执行文件中,如果打开的解决方案匹配,则删除必要的文件。然后执行 devenv 并将解决方案完整路径和名称作为参数传递。Associate a .SLN file with your own executable instead of
devenv
. In your executable, if the solution being opened matches then delete the necessary files. Then execute thedevenv
and pass the solution full path and name as a parameter.