-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Visual Studio 2019 image update on July 1, 2022 .NET Core 3.1.420 Go 1.18.3, 1.17.11 PowerShell Core 7.2.5 Firefox 102.0 Microsoft Edge 103.0.1264.37 Google Chrome 103.0.5060.66 OpenSSL 1.1.1p, 3.0.4 Doxygen to 1.9.4 * Qt 6.3.1, 6.4.0 - added, 6.1 - removed Qt * Meson 0.62.1, LLVM 14.0.6, Visual Studio 2019 version 16.11.16 * Yarn 1.22.19 * Curl 7.84.0 * NuGet 6.2.1 * GitVersion 5.10.3 * Git 2.37.0 * Git LFS 3.2.0 * Ninja 1.11.0 * Mercurial 6.1.4 * Maven 3.8.6 * Disable Azure builds
- Loading branch information
1 parent
3e9f1f8
commit d3d6303
Showing
23 changed files
with
279 additions
and
120 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,16 @@ | ||
Write-Host "Installing GitVersion..." -ForegroundColor Cyan | ||
$gvPath = "$env:SYSTEMDRIVE\Tools\GitVersion" | ||
if(Test-Path $gvPath) { | ||
if (Test-Path $gvPath) { | ||
Remove-Item $gvPath -Recurse -Force | ||
} | ||
|
||
$tempPath = "$env:TEMP\GitVersion" | ||
nuget install gitversion.commandline -Version 5.7.0 -ExcludeVersion -OutputDirectory $tempPath | ||
Write-Host "Downloading GitVersion..." | ||
$zipPath = "$env:TEMP\gitversion.zip" | ||
(New-Object Net.WebClient).DownloadFile('https://github.com/GitTools/GitVersion/releases/download/5.10.3/gitversion-win-x64-5.10.3.zip', $zipPath) | ||
|
||
Write-Host "Unpacking GitVersion..." | ||
7z x $zipPath -aoa -o"$gvPath" | Out-Null | ||
Remove-Item $zipPath | ||
|
||
[IO.Directory]::Move("$tempPath\gitversion.commandline\tools", $gvPath) | ||
Remove-Item $tempPath -Recurse -Force | ||
Add-Path $gvPath | ||
Write-Host "GitVersion installed" -ForegroundColor Green |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.