SportsDataPlayground
|
ced267328c
|
[wil] Update to latest v1.0.231028.1 version (#35099)
* [wil] Update to latest v1.0.231028.1 version
See https://github.com/microsoft/wil/releases/tag/v1.0.231028.1 for details
* Update wil.json
|
2023-11-15 15:46:34 -08:00 |
|
Theodore Tsirpanis
|
f7dc9c8f5e
|
[wil] Configure only in release mode. (#34686)
* [wil] Configure only in release mode.
* Update version database.
|
2023-10-24 09:20:24 -07:00 |
|
Duncan Horn
|
875d68a4c5
|
update WIL to 2023-08-24 (#33368)
|
2023-08-25 12:09:52 -07:00 |
|
JonLiu1993
|
eecae38da7
|
[wil] Update to v1.0.230411.1 (#30915)
* [wil] Update to v1.0.230411.1
* update version
|
2023-04-17 19:34:57 -07:00 |
|
Duncan Horn
|
52388affa0
|
[WIL] Update to 2023-02-02 (#29399)
* Update WIL port
* Running new command I previously didn't know about
* Update the wil port
* Update the wil port
* Update the versions file
|
2023-02-02 19:57:29 -08:00 |
|
Silent
|
8f229feaf1
|
[wil] Update to v1.0.220914.1 (#27185)
* [wil] Update to v1.0.220914.1
* Add version
|
2022-10-14 16:31:24 -07:00 |
|
Charles Milette
|
1695bf690b
|
[wil] update (#22192)
* [wil] update
* [wil] update versions
|
2021-12-28 15:05:09 -08:00 |
|
Jack·Boos·Yu
|
1ac3a7f078
|
[wil] Fix usage (#21151)
* [wil] Fix usage
* version
* Apply suggestions
* version
|
2021-12-13 11:47:30 -08:00 |
|
Billy O'Neal
|
b295670e4b
|
Bulk convert control files. (#19986)
```
function Convert-Control {
Param($full)
.\vcpkg.exe format-manifest $full
$root = $full.Substring(0, $full.Length - 7) # CONTROL
$new = $root + 'vcpkg.json'
$content = Get-Content -Raw $new
$asJson = ConvertFrom-Json $content -AsHashtable -Depth 100
$oldVersion = $asJson['port-version']
if ($null -eq $oldVersion) {
$oldVersionFull = $asJson['version-string']
Write-Host "Got version $oldVersionFull"
$match = [System.Text.RegularExpressions.Regex]::Match($oldVersionFull, '^(.+)-(\d+)$')
if ($match.Success -and -not [System.Text.RegularExpressions.Regex]::IsMatch($oldVersionFull, '^\d\d\d\d-\d\d-\d\d$')) {
$newFullVersion = [string]$match.Groups[1].Value
$oldVersion = [int]$match.Groups[2].Value
Write-Host "newFullVersion $newFullVersion oldVersion $oldVersion"
$newVersion = $oldVersion + 1
$asJson['version-string'] = $newFullVersion
Write-Host "Previous version for $full extracted from version field -- setting version-string $newFullVersion and port-version $newVersion"
} else {
Write-Host "No previous version for $full -- setting 1"
$newVersion = 1
}
} else {
$newVersion = [int]$oldVersion + 1
Write-Host "New version for $full : $newVersion"
}
$asJson['port-version'] = $newVersion
$content = ConvertTo-Json $asJson -Depth 100
Set-Content -Path $new -Value $content
.\vcpkg.exe format-manifest $new
}
Get-ChildItem ports\CONTROL -Recurse | Foreach-Object {
Convert-Control $_.FullName
}
git commit -am "this message"
.\vcpkg.exe x-add-version -all
git commit -a --amend
```
|
2021-09-09 01:24:04 -07:00 |
|