将 IIS 网站纳入版本控制
问题:到目前为止,我使用 IIS 管理器工具创建 IIS 网站/应用程序。问题是对 IIS 网站的更改没有按应有的方式记录下来。例如:当我更新 URL 重写规则时,此更改应记录在版本控制解决方案中。
您解决这个问题的解决方案是什么?
The Problem: Until now, I create a IIS website/app using the IIS manager tool. The problem is that changes to a IIS website aren't documented as they should be. For example: when I update the URL Rewrite rules this changes should be documented in a version control solution.
What is your solution to solve this issus?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在任何项目类型中都可以使用源代码管理,包括“网站”或“Web 应用程序”项目。您打算建立持续集成吗?
Using a source control is possible in any project type, including "Website" or "Web Application" projects. Are you going to establish a Continuous Integration?
是的,您可以将项目置于源代码管理中。然后在 PowerShell 和/或 MSBuild 可以将您的网站部署到干净的 IIS(或至少包含所有依赖项)。这将记录部署站点所需的步骤。
Yes, you can have your project in source control. Then create a build in PowerShell and/or MSBuild that can deploy your website to a clean IIS (or at least with all dependencies there). That will document the steps needed to deploy your site.