文件转换,是否可以为设置添加自动增量

发布于 2024-12-06 20:16:11 字数 560 浏览 1 评论 0原文

在我们的自动构建中,我们将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

枕梦 2024-12-13 20:16:11
  1. 您已经将当前版本号或什至下一版本号作为 msbuild 属性值 - 请参阅 3
  2. 您没有它 ->请参阅底部的 PS,然后返回 3
  3. 您可以使用 FileUpdate 任务,通过提供正则表达式和具有新版本号的替换文本:

 <FileUpdate
      Files="@(FilesToUpdate)"
      Regex="regex here"
      ReplacementText="$(NextVersionNumber)" />

PS:通过使用 RegexMatch 任务,您可以提取当前版本,然后通过递增它,您将获得一个值这$(NextVersionNumber) 属性。

  1. You already have the Current or even Next Version number as msbuild property value - see 3
  2. You do not have it -> see PS at the bottom and then back to 3
  3. You can do it using FileUpdate task by providing a regexp and replacement text with a new version number:

 <FileUpdate
      Files="@(FilesToUpdate)"
      Regex="regex here"
      ReplacementText="$(NextVersionNumber)" />

PS: By using RegexMatch task you can extract current version and then by incrementing it you'll get a value for the $(NextVersionNumber) proeprty.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文