Add YAML Azure Pipelines

This commit is contained in:
Chuck Walbourn
2022-12-04 18:22:15 -08:00
parent d993bbdb6e
commit 06d5286870
12 changed files with 1446 additions and 1 deletions

6
build/versioninfo.ps1 Normal file
View File

@@ -0,0 +1,6 @@
param(
[string]$version
)
$versionComma = $version.Replace(".", ",")
$files = 'Texassemble\texassemble.rc', 'Texconv\Texconv.rc', 'Texdiag\texdiag.rc'
foreach ($file in $files) { (Get-Content $file).replace('1,0,0,0', $versionComma).replace('1.0.0.0', $version) | Set-Content $file }