2013-12-28 00:05:07 +04:00
|
|
|
param ([string] $templateFilename, [string] $outputFilename)
|
|
|
|
|
2016-12-14 00:12:03 +03:00
|
|
|
$versionParts = Select-String -Path "${env:SOLUTIONDIR}meson.build" -Pattern " version: '([^']+)',$" | Select-Object -First 1 | %{ $_.Matches[0].Groups[1].Value.Split('.') }
|
2013-12-28 00:05:07 +04:00
|
|
|
|
|
|
|
[string[]] $contents = Get-Content $templateFilename -Encoding UTF8 | %{
|
|
|
|
while ($_ -match '^(.*?)<#=(.*?)#>(.*?)$') {
|
|
|
|
$_ = $Matches[1] + $(Invoke-Expression $Matches[2]) + $Matches[3]
|
|
|
|
}
|
|
|
|
$_
|
|
|
|
}
|
|
|
|
|
|
|
|
[System.IO.File]::WriteAllLines($outputFilename, $contents)
|