mirror of
https://github.com/moparisthebest/hexchat
synced 2024-10-31 23:45:07 -04:00
c7bf4b0474
TextTransform.exe is not available with Express versions of Visual Studio.
13 lines
510 B
PowerShell
13 lines
510 B
PowerShell
param ([string] $templateFilename, [string] $outputFilename)
|
|
|
|
$versionParts = Select-String -Path "${env:SOLUTIONDIR}configure.ac" -Pattern '^AC_INIT\(\[HexChat\],\[([^]]+)\]\)$' | Select-Object -First 1 | %{ $_.Matches[0].Groups[1].Value.Split('.') }
|
|
|
|
[string[]] $contents = Get-Content $templateFilename -Encoding UTF8 | %{
|
|
while ($_ -match '^(.*?)<#=(.*?)#>(.*?)$') {
|
|
$_ = $Matches[1] + $(Invoke-Expression $Matches[2]) + $Matches[3]
|
|
}
|
|
$_
|
|
}
|
|
|
|
[System.IO.File]::WriteAllLines($outputFilename, $contents)
|