mirror of
https://github.com/ZoiteChat/zoitechat.git
synced 2026-03-14 09:40:20 +00:00
Replaced use of T4 templates with PS-based templates.
TextTransform.exe is not available with Express versions of Visual Studio.
This commit is contained in:
12
version-template.ps1
Normal file
12
version-template.ps1
Normal file
@@ -0,0 +1,12 @@
|
||||
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)
|
||||
Reference in New Issue
Block a user