文件转换,是否可以为设置添加自动增量
在我们的自动构建中,我们将 MSBuild
与 web.config transformation 创建接受配置和生产配置。
我们添加了属性来更改配置设置,
例如更改 cdn url。
<add key="cdn1url" value="http://cdn.acceptance.oursite.com/"
xdt:Transform="SetAttributes"
xdt:Locator="Match(key)" />
有谁知道是否可以添加自动增量属性?我们希望在每个生产版本上将 +1
添加到版本属性(用于 css/img/js
缓存)。
其他选项可能是 Teamcity
内部版本号,但我不确定这是否可行
In our automatic build we use MSBuild
in combination with web.config transformation to create an acceptance config and a production config.
We have added attributes to change config settings
for example to change the cdn url's.
<add key="cdn1url" value="http://cdn.acceptance.oursite.com/"
xdt:Transform="SetAttributes"
xdt:Locator="Match(key)" />
Does anybody know if it is possible to add an autoincrement attribute? We want to add +1
to the version attribute (for css/img/js
caching) on every production build.
An other option could be the Teamcity
build number, but I am not sure if that is possible
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
3
PS
,然后返回3
PS:通过使用
RegexMatch
任务,您可以提取当前版本,然后通过递增它,您将获得一个值这$(NextVersionNumber)
属性。3
PS
at the bottom and then back to3
PS: By using
RegexMatch
task you can extract current version and then by incrementing it you'll get a value for the$(NextVersionNumber)
proeprty.