我的 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
在脚本的一部分周围使用双引号,这样我就可以转义引号字符,但这似乎也不起作用。我猜这是以这种方式编写脚本的限制。
还有其他方法可以实现我想要的吗?