Skip to content

Commit 3d475a4

Browse files
committed
Regenerate artifacts.
1 parent a625d17 commit 3d475a4

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

.appveyor.yml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,9 @@
44
# GENERATED SOURCE CODE, DO NOT EDIT EXCEPT EXPERIMENTALLY
55
#
66
###############################################################################
7-
version: 3.0.0.{build}-{branch}
7+
version: 4.0.0.{build}-{branch}
88

9-
os:
10-
- Visual Studio 2013
9+
image: Visual Studio 2013
1110

1211
clone_folder: c:\git\libbitcoin-protocol
1312
skip_tags: true
@@ -47,11 +46,14 @@ before_build:
4746
| Where-Object { $_.DisplayName -and $_.DisplayName.Contains($product_name) } `
4847
| Select UninstallString).UninstallString
4948
}
50-
Write-Host "Uninstalling Microsoft Visual C++ 2013 Redistributable (x64)..." -ForegroundColor Yellow;
51-
"$(GetUninstallString "Microsoft Visual C++ 2013 Redistributable (x64)") /quiet" | out-file "$env:TEMP\uninstall.cmd" -Encoding ASCII;
49+
Write-Host "Uninstalling Microsoft Visual C++ 2013 Redistributable (x64) - 12.0.21005..." -ForegroundColor Yellow;
50+
"$(GetUninstallString "Microsoft Visual C++ 2013 Redistributable (x64) - 12.0.21005") /quiet" | out-file "$env:TEMP\uninstall.cmd" -Encoding ASCII;
5251
& $env:temp\uninstall.cmd;
53-
Write-Host "Uninstalling Microsoft Visual C++ 2013 Redistributable (x86)..." -Foreground Yellow;
54-
"$(GetUninstallString "Microsoft Visual C++ 2013 Redistributable (x86)") /quiet" | out-file "$env:TEMP\uninstall.cmd" -Encoding ASCII;
52+
Write-Host "Uninstalling Microsoft Visual C++ 2013 Redistributable (x64) - 12.0.30501..." -ForegroundColor Yellow;
53+
"$(GetUninstallString "Microsoft Visual C++ 2013 Redistributable (x64) - 12.0.30501") /quiet" | out-file "$env:TEMP\uninstall.cmd" -Encoding ASCII;
54+
& $env:temp\uninstall.cmd;
55+
Write-Host "Uninstalling Microsoft Visual C++ 2013 Redistributable (x86) - 12.0.30501..." -Foreground Yellow;
56+
"$(GetUninstallString "Microsoft Visual C++ 2013 Redistributable (x86) - 12.0.30501") /quiet" | out-file "$env:TEMP\uninstall.cmd" -Encoding ASCII;
5557
& $env:temp\uninstall.cmd;
5658
Write-Host "Downloading Visual C++ Compiler November 2013 CTP..." -ForegroundColor Yellow;
5759
$CTP_INSTALLER_PATH = "$($env:TEMP)\$CTP_FILENAME";

0 commit comments

Comments
 (0)