Skip to content

Commit

Permalink
Merge 7978091 into f7ffb47
Browse files Browse the repository at this point in the history
  • Loading branch information
pmienk committed Jul 17, 2018
2 parents f7ffb47 + 7978091 commit e60b144
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 93 deletions.
16 changes: 9 additions & 7 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,9 @@
# GENERATED SOURCE CODE, DO NOT EDIT EXCEPT EXPERIMENTALLY
#
###############################################################################
version: 3.0.0.{build}-{branch}
version: 3.4.0.{build}-{branch}

os:
- Visual Studio 2013
image: Visual Studio 2013

clone_folder: c:\git\libbitcoin
skip_tags: true
Expand Down Expand Up @@ -47,11 +46,14 @@ before_build:
| Where-Object { $_.DisplayName -and $_.DisplayName.Contains($product_name) } `
| Select UninstallString).UninstallString
}
Write-Host "Uninstalling Microsoft Visual C++ 2013 Redistributable (x64)..." -ForegroundColor Yellow;
"$(GetUninstallString "Microsoft Visual C++ 2013 Redistributable (x64)") /quiet" | out-file "$env:TEMP\uninstall.cmd" -Encoding ASCII;
Write-Host "Uninstalling Microsoft Visual C++ 2013 Redistributable (x64) - 12.0.21005..." -ForegroundColor Yellow;
"$(GetUninstallString "Microsoft Visual C++ 2013 Redistributable (x64) - 12.0.21005") /quiet" | out-file "$env:TEMP\uninstall.cmd" -Encoding ASCII;
& $env:temp\uninstall.cmd;
Write-Host "Uninstalling Microsoft Visual C++ 2013 Redistributable (x86)..." -Foreground Yellow;
"$(GetUninstallString "Microsoft Visual C++ 2013 Redistributable (x86)") /quiet" | out-file "$env:TEMP\uninstall.cmd" -Encoding ASCII;
Write-Host "Uninstalling Microsoft Visual C++ 2013 Redistributable (x64) - 12.0.30501..." -ForegroundColor Yellow;
"$(GetUninstallString "Microsoft Visual C++ 2013 Redistributable (x64) - 12.0.30501") /quiet" | out-file "$env:TEMP\uninstall.cmd" -Encoding ASCII;
& $env:temp\uninstall.cmd;
Write-Host "Uninstalling Microsoft Visual C++ 2013 Redistributable (x86) - 12.0.30501..." -Foreground Yellow;
"$(GetUninstallString "Microsoft Visual C++ 2013 Redistributable (x86) - 12.0.30501") /quiet" | out-file "$env:TEMP\uninstall.cmd" -Encoding ASCII;
& $env:temp\uninstall.cmd;
Write-Host "Downloading Visual C++ Compiler November 2013 CTP..." -ForegroundColor Yellow;
$CTP_INSTALLER_PATH = "$($env:TEMP)\$CTP_FILENAME";
Expand Down
86 changes: 0 additions & 86 deletions appveyor.yml

This file was deleted.

0 comments on commit e60b144

Please sign in to comment.