2024-09-05 03:50:45 +03:00
|
|
|
<#
|
|
|
|
Copyright (c) Microsoft Corporation.
|
|
|
|
Licensed under the MIT License.
|
|
|
|
#>
|
|
|
|
|
2020-01-24 02:58:52 +03:00
|
|
|
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 }
|