1

我的 azure piplines yaml 脚本使用 powershell 将 .CS 文件中的占位符字符串替换为当前日期字符串。这是要替换的值的行 ( 20200101000000)

[assembly: MyCompany.Net.Attributes.BuildDateAttribute("20200101000000")]

这是执行此操作的 powershell 步骤

pwsh: (get-content -path $(versionFile)) | foreach-object {$_ -replace "20200101000000", (get-date -f 'yyyyMMddhhmmss')} | set-content -path $(versionFile)
  displayName: 'Update time stamp file'

我想更改此步骤以"在搜索字符串周围包含引号字符,并将它们与新日期一起写入新输出值。但我似乎无法做到这一点。

我错误地尝试将转义的引号字符\"放在搜索和替换字符串中。但我猜你不能在单引号字符串中转义,所以它不起作用

pwsh: (get-content -path $(versionFile)) | foreach-object {$_ -replace "\"20200101000000\"", (get-date -f '\"yyyyMMddhhmmss\"')} | set-content -path $(versionFile)

这是错误:

##[command]"C:\Program Files\PowerShell\7\pwsh.exe" -NoLogo -NoProfile -NonInteractive -ExecutionPolicy Unrestricted -Command ". 'D:\a\_temp\80625e52-1302-4e35-a799-223ab893bcf1.ps1'"
ParserError: D:\a\_temp\80625e52-1302-4e35-a799-223ab893bcf1.ps1:3
Line |
   3 |  … lyInfo.cs) | foreach-object {$_ -replace "\"20200101000000\"", (get-d …
     |                                                ~~~~~~~~~~~~~~~~~
     | Unexpected token '20200101000000\""' in expression or statement.
##[error]PowerShell exited with code '1'.

我还尝试get-date在脚本的一部分周围使用双引号,这样我就可以转义引号字符,但这似乎也不起作用。我猜这是以这种方式编写脚本的限制。

还有其他方法可以实现我想要的吗?

4

2 回答 2

1

您可以使用Get-Date -UFormat代替添加类似于DateTime.ToString().NET 中的函数的任意字符

'[Attrib("20200101000000")]' -replace '"20200101000000"', (get-date -UFormat '"%Y%m%d%H%M%S"')
于 2020-11-03T19:07:03.193 回答
0

Powershell 中的转义字符是反引号 (`),而不是反斜杠 (\)。试试例如"`"20200101000000`""

于 2020-11-03T19:09:30.223 回答