ShareX/AppVeyor/install.ps1

11 lines
299 B
PowerShell
Raw Normal View History

2018-03-20 06:42:28 +13:00
$content = Get-Content "SharedAssemblyInfo.cs"
$match = [regex]::Match($content, 'AssemblyVersion\(\"(.+?)\"\)')
if ($match.Success)
{
$env:AppVersion = $match.Groups[1].Value
2016-09-22 13:17:00 +12:00
Update-AppveyorBuild -Version "$env:AppVersion.$env:APPVEYOR_BUILD_NUMBER"
}
else
{
$env:AppVersion = "1.0.0"
}