-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathversion-increment.ps1
248 lines (201 loc) · 8.46 KB
/
version-increment.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
# Version Increment Tool for ConPtyTermEmulator
# This script increments version numbers in project files
param (
[Parameter(HelpMessage="Increment the major version number")]
[switch]$Major,
[Parameter(HelpMessage="Increment the minor version number")]
[switch]$Minor,
[Parameter(HelpMessage="Increment the patch version number")]
[switch]$Patch,
[Parameter(HelpMessage="Increment the beta version number")]
[switch]$Beta,
[Parameter(HelpMessage="Build packages after incrementing version")]
[switch]$Build,
[Parameter(HelpMessage="Build configuration (Debug or Release) if you want to build after updating")]
[string]$Config = "Debug",
[Parameter(HelpMessage="Skip confirmation prompt")]
[switch]$NoConfirm
)
Write-Host "===== Version Increment Tool for ConPtyTermEmulator =====" -ForegroundColor Cyan
Write-Host "This script increments version numbers in project files" -ForegroundColor Cyan
# Determine increment type based on parameters
$incrementType = "patch" # Default
if ($Major) { $incrementType = "major" }
elseif ($Minor) { $incrementType = "minor" }
elseif ($Beta) { $incrementType = "beta" }
elseif ($Patch) { $incrementType = "patch" }
Write-Host "`nConfiguration:" -ForegroundColor Yellow
Write-Host "- Increment Type: $incrementType"
Write-Host "- Build Config: $Config"
Write-Host "- Build after increment: $($Build.IsPresent)"
# Project file paths
$easyTerminalProj = "EasyWindowsTerminalControl\EasyWindowsTerminalControl.csproj"
$easyTerminalWinUIProj = "EasyWindowsTerminalControl.WinUI\EasyWindowsTerminalControl.WinUI.csproj"
$terminalWinUI3Proj = "Microsoft.Terminal.WinUI3\Microsoft.Terminal.WinUI3.csproj"
$termExampleProj = "TermExample\TermExample.csproj"
$termExampleWinUIProj = "TermExample.WinUI\TermExample.WinUI.csproj"
# Get current versions from project files
function Get-ProjectVersion {
param (
[string]$ProjectPath
)
$content = Get-Content $ProjectPath -Raw
if ($content -match '<Version>([^<]+)</Version>') {
return $matches[1]
}
Write-Error "Could not find Version tag in $ProjectPath"
exit 1
}
$currentVer = Get-ProjectVersion -ProjectPath $easyTerminalProj
$currentWinUIVer = Get-ProjectVersion -ProjectPath $easyTerminalWinUIProj
$currentTerminalVer = Get-ProjectVersion -ProjectPath $terminalWinUI3Proj
Write-Host "`nCurrent versions:" -ForegroundColor Yellow
Write-Host "- EasyWindowsTerminalControl: $currentVer"
Write-Host "- EasyWindowsTerminalControl.WinUI: $currentWinUIVer"
Write-Host "- CI.Microsoft.Terminal.WinUI3.Unofficial: $currentTerminalVer"
# Calculate new versions
function Get-IncrementedVersion {
param (
[string]$Version,
[string]$IncrementType,
[switch]$IsBeta
)
# Handle beta versioning
if ($Version -match '([\d\.]+)-(beta)\.(\d+)') {
$baseVer = $matches[1]
$betaNum = [int]$matches[3]
if ($IncrementType -eq "beta") {
return "$baseVer-beta.$($betaNum + 1)"
}
$parts = $baseVer.Split('.')
if ($IncrementType -eq "major") {
$newMajor = [int]$parts[0] + 1
return "$newMajor.0.0-beta.1"
}
elseif ($IncrementType -eq "minor") {
$newMinor = [int]$parts[1] + 1
return "$($parts[0]).$newMinor.0-beta.1"
}
elseif ($IncrementType -eq "patch") {
$newPatch = [int]$parts[2] + 1
return "$($parts[0]).$($parts[1]).$newPatch-beta.1"
}
}
# Handle regular versioning
elseif ($Version -match '([\d\.]+)') {
$parts = $Version.Split('.')
# Fill in missing parts (e.g., if version is just "1.0")
while ($parts.Length -lt 3) {
$parts += "0"
}
if ($IsBeta) {
# Convert to beta format
if ($IncrementType -eq "beta") {
return "$Version-beta.1"
}
}
if ($IncrementType -eq "major") {
$newMajor = [int]$parts[0] + 1
if ($IsBeta) {
return "$newMajor.0.0-beta.1"
} else {
return "$newMajor.0.0"
}
}
elseif ($IncrementType -eq "minor") {
$newMinor = [int]$parts[1] + 1
if ($IsBeta) {
return "$($parts[0]).$newMinor.0-beta.1"
} else {
return "$($parts[0]).$newMinor.0"
}
}
elseif ($IncrementType -eq "patch") {
$newPatch = [int]$parts[2] + 1
if ($IsBeta) {
return "$($parts[0]).$($parts[1]).$newPatch-beta.1"
} else {
return "$($parts[0]).$($parts[1]).$newPatch"
}
}
elseif ($IncrementType -eq "beta" -and $IsBeta) {
return "$Version-beta.1"
}
elseif ($IncrementType -eq "beta") {
# If we're incrementing beta on a non-beta version, just return the same version
return $Version
}
return $Version
}
Write-Error "Invalid version format: $Version"
exit 1
}
# Calculate new versions
$newVer = Get-IncrementedVersion -Version $currentVer -IncrementType $incrementType
$newWinUIVer = Get-IncrementedVersion -Version $currentWinUIVer -IncrementType $incrementType -IsBeta
$newTerminalVer = Get-IncrementedVersion -Version $currentTerminalVer -IncrementType $incrementType -IsBeta
Write-Host "`nNew versions:" -ForegroundColor Green
Write-Host "- EasyWindowsTerminalControl: $newVer"
Write-Host "- EasyWindowsTerminalControl.WinUI: $newWinUIVer"
Write-Host "- CI.Microsoft.Terminal.WinUI3.Unofficial: $newTerminalVer"
# Confirm before proceeding
if (-not $NoConfirm) {
$confirmation = Read-Host "`nDo you want to update the version numbers? (Y/N)"
if ($confirmation -ne 'Y' -and $confirmation -ne 'y') {
Write-Host "Operation cancelled." -ForegroundColor Yellow
exit 0
}
}
Write-Host "`nUpdating version numbers..." -ForegroundColor Cyan
# Update versions in project files
function Update-ProjectVersion {
param (
[string]$ProjectPath,
[string]$NewVersion
)
$content = Get-Content $ProjectPath -Raw
$updatedContent = $content -replace '<Version>[^<]+</Version>', "<Version>$NewVersion</Version>"
Set-Content -Path $ProjectPath -Value $updatedContent
Write-Host "Updated $ProjectPath to version $NewVersion"
}
# Update dependency reference in WinUI project
function Update-DependencyVersion {
param (
[string]$ProjectPath,
[string]$DependencyName,
[string]$NewVersion
)
$content = Get-Content $ProjectPath -Raw
$pattern = "<PackageReference Include=""$DependencyName"" Version=""[^""]+"""
$replacement = "<PackageReference Include=""$DependencyName"" Version=""$NewVersion"""
if ($content -match $pattern) {
$updatedContent = $content -replace $pattern, $replacement
Set-Content -Path $ProjectPath -Value $updatedContent
Write-Host "Updated dependency $DependencyName in $ProjectPath to version $NewVersion"
return $true
}
Write-Warning "Could not find dependency reference for $DependencyName in $ProjectPath"
return $false
}
Update-ProjectVersion -ProjectPath $easyTerminalProj -NewVersion $newVer
Update-ProjectVersion -ProjectPath $easyTerminalWinUIProj -NewVersion $newWinUIVer
Update-ProjectVersion -ProjectPath $terminalWinUI3Proj -NewVersion $newTerminalVer
# Update dependency reference in WinUI project
Update-DependencyVersion -ProjectPath $easyTerminalWinUIProj -DependencyName "CI.Microsoft.Terminal.WinUI3.Unofficial" -NewVersion $newTerminalVer
# Update the two example apps
Update-DependencyVersion -ProjectPath $termExampleProj -DependencyName "EasyWindowsTerminalControl" -NewVersion $newVer
Update-DependencyVersion -ProjectPath $termExampleWinUIProj -DependencyName "EasyWindowsTerminalControl.WinUI" -NewVersion $newWinUIVer
Write-Host "`nVersion numbers have been updated successfully!" -ForegroundColor Green
# Build if requested
if ($Build) {
Write-Host "`nBuilding solution with new versions..." -ForegroundColor Cyan
# Execute the build script with the specified configuration
$buildCmd = ".\build.ps1 -Configuration $Config"
Invoke-Expression $buildCmd
if ($LASTEXITCODE -ne 0) {
Write-Host "ERROR: Failed to build solution" -ForegroundColor Red
exit $LASTEXITCODE
}
Write-Host "`nSolution built successfully with new versions!" -ForegroundColor Green
}
Write-Host "`n===== Version increment process completed =====" -ForegroundColor Cyan