9 lines
288 B
PowerShell
9 lines
288 B
PowerShell
# Deprecated helper retained for compatibility.
|
|
|
|
Set-StrictMode -Version Latest
|
|
$ErrorActionPreference = 'Stop'
|
|
|
|
Write-Warning 'UpgradeSeqBatches.ps1 has been deprecated.'
|
|
Write-Warning 'Please run UpdateProjectBatches.ps1 and choose the project that needs refreshed batch files.'
|
|
exit 1
|