mirror of
https://github.com/microsoft/UVAtlas
synced 2024-11-12 15:10:31 +00:00
7 lines
224 B
PowerShell
7 lines
224 B
PowerShell
|
param(
|
||
|
[string]$version
|
||
|
)
|
||
|
$file = 'UVAtlasTool\uvatlas.rc'
|
||
|
$versionComma = $version.Replace(".", ",")
|
||
|
(Get-Content $file).replace('1,0,0,0', $versionComma).replace('1.0.0.0', $version) | Set-Content $file
|
||
|
(Get-Content $file)
|