UVAtlas/build/versioninfo.ps1

12 lines
300 B
PowerShell
Raw Permalink Normal View History

2024-09-05 00:50:54 +00:00
<#
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
#>
2020-02-15 08:08:39 +00:00
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)