Skip to content

Commit f7dec51

Browse files
committed
Regenerate artifacts.
1 parent 21cd457 commit f7dec51

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: 3.4.0.{build}-{branch}
88

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

1211
clone_folder: c:\git\libbitcoin-server
1312
skip_tags: true
@@ -41,11 +40,14 @@ before_build:
4140
| Where-Object { $_.DisplayName -and $_.DisplayName.Contains($product_name) } `
4241
| Select UninstallString).UninstallString
4342
}
44-
Write-Host "Uninstalling Microsoft Visual C++ 2013 Redistributable (x64)..." -ForegroundColor Yellow;
45-
"$(GetUninstallString "Microsoft Visual C++ 2013 Redistributable (x64)") /quiet" | out-file "$env:TEMP\uninstall.cmd" -Encoding ASCII;
43+
Write-Host "Uninstalling Microsoft Visual C++ 2013 Redistributable (x64) - 12.0.21005..." -ForegroundColor Yellow;
44+
"$(GetUninstallString "Microsoft Visual C++ 2013 Redistributable (x64) - 12.0.21005") /quiet" | out-file "$env:TEMP\uninstall.cmd" -Encoding ASCII;
4645
& $env:temp\uninstall.cmd;
47-
Write-Host "Uninstalling Microsoft Visual C++ 2013 Redistributable (x86)..." -Foreground Yellow;
48-
"$(GetUninstallString "Microsoft Visual C++ 2013 Redistributable (x86)") /quiet" | out-file "$env:TEMP\uninstall.cmd" -Encoding ASCII;
46+
Write-Host "Uninstalling Microsoft Visual C++ 2013 Redistributable (x64) - 12.0.30501..." -ForegroundColor Yellow;
47+
"$(GetUninstallString "Microsoft Visual C++ 2013 Redistributable (x64) - 12.0.30501") /quiet" | out-file "$env:TEMP\uninstall.cmd" -Encoding ASCII;
48+
& $env:temp\uninstall.cmd;
49+
Write-Host "Uninstalling Microsoft Visual C++ 2013 Redistributable (x86) - 12.0.30501..." -Foreground Yellow;
50+
"$(GetUninstallString "Microsoft Visual C++ 2013 Redistributable (x86) - 12.0.30501") /quiet" | out-file "$env:TEMP\uninstall.cmd" -Encoding ASCII;
4951
& $env:temp\uninstall.cmd;
5052
Write-Host "Downloading Visual C++ Compiler November 2013 CTP..." -ForegroundColor Yellow;
5153
$CTP_INSTALLER_PATH = "$($env:TEMP)\$CTP_FILENAME";

0 commit comments

Comments
 (0)