如何使用TFS和变量功能替换.config文件中的值?
我需要一种通过MS TFS替换我的.config文件中的值的方法。
例如,如果在tfs中通过变量选项将'browser'类型设置为'firefox',则应使用现在已更改的现有.config文件填充此新值。
我的配置文件:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd">
<properties>
<comment>Properties Example</comment>
<entry key="browser">#{chrome}#</entry>
<entry key="url">#{https://www.example.com}#</entry>
<entry key="username">#{joeblogs@example.com}#</entry>
</properties>
我需要使用以下设置替换tfs中具有#{replace me}#的所有值:link