зеркало из https://github.com/microsoft/DirectXTK.git
12 строки
353 B
PowerShell
12 строки
353 B
PowerShell
<#
|
|
Copyright (c) Microsoft Corporation.
|
|
Licensed under the MIT License.
|
|
#>
|
|
|
|
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 }
|