Skip to content

Commit

Permalink
Merge pull request #475 from pmienk/version3
Browse files Browse the repository at this point in the history
Regenerate artifacts.
  • Loading branch information
evoskuil committed Jul 17, 2018
2 parents 21cd457 + f7dec51 commit f5e6487
Showing 1 changed file with 9 additions and 7 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-server
skip_tags: true
Expand Down Expand Up @@ -41,11 +40,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

0 comments on commit f5e6487

Please sign in to comment.