msdeploy 忽略 .hgignore
有什么方法可以告诉 Visual Studio 2010 MSDeploy 忽略项目中的某些文件和文件夹吗?目前,我所做的方法是将某些内容从项目中排除,这样它们就不会被部署。
正如 Mercurial 所做的那样,像 .hgignore
这样的文件在这里会很棒。
is there any way that we can tell visual Studio 2010 MSDeploy to ignore some of the files and folders withing the project? currently, the way I do is to exclude things from the project so that they won't be deployed.
as mercurial does, a file like .hgignore
would be great here.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用命令行参数 -skip 来完成此操作。
对于目录:
对于文件:
希望这有帮助。
You can do this by using the command line parameter -skip.
For directories:
For files:
Hope this helps.