Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在运行解决方案时执行一个批处理文件,该解决方案将准备我要部署到的环境。我希望它在我按 F5 时首先运行,然后再发生其他任何事情。这可能吗?如果是这样,怎么做?
在项目的属性页中,在调试选项卡下,为命令选项设置正确的值。默认值为$(TargetPath),它将运行输出可执行文件。只需在那里指定您的批处理文件。
$(TargetPath)
在这种情况下,您必须自己运行可执行文件。我建议将$(TargetPath)参数作为参数传递给您的批处理脚本,然后执行该参数。