我正在开发一个项目,如果目标上已经存在相同的文件,部署工具会自动添加“.update”扩展名。例如
root
web.config
web.config.update
connection.config
connection.config.update
我想通过 powershell 执行以下部署后:
- 备份 *.config。
将现有的 *.config 替换为 *.update 文件。以下是所需的输出:
根 web.config web.config.update connection.config connection.config.update 根 web.config connection.config 备份 web.config connection.config
有人可以帮助如何通过使用 powershell 实现上述目标吗?