mirror of
https://github.com/ncblakely/GiantsTools
synced 2024-11-05 14:55:38 +01:00
7 lines
277 B
PowerShell
7 lines
277 B
PowerShell
param(
|
|
[string]$version
|
|
)
|
|
$versionComma = $version.Replace(".", ",")
|
|
$files = 'XWBTool\xwbtool.rc', 'MakeSpriteFont\Properties\AssemblyInfo.cs'
|
|
foreach ($file in $files) { (Get-Content $file).replace('1,0,0,0', $versionComma).replace('1.0.0.0', $version) | Set-Content $file }
|