|
4 | 4 | # GENERATED SOURCE CODE, DO NOT EDIT EXCEPT EXPERIMENTALLY
|
5 | 5 | #
|
6 | 6 | ###############################################################################
|
7 |
| -version: 3.0.0.{build}-{branch} |
| 7 | +version: 4.0.0.{build}-{branch} |
8 | 8 |
|
9 |
| -os: |
10 |
| - - Visual Studio 2013 |
| 9 | +image: Visual Studio 2013 |
11 | 10 |
|
12 | 11 | clone_folder: c:\git\libbitcoin-protocol
|
13 | 12 | skip_tags: true
|
@@ -47,11 +46,14 @@ before_build:
|
47 | 46 | | Where-Object { $_.DisplayName -and $_.DisplayName.Contains($product_name) } `
|
48 | 47 | | Select UninstallString).UninstallString
|
49 | 48 | }
|
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; |
52 | 51 | & $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; |
55 | 57 | & $env:temp\uninstall.cmd;
|
56 | 58 | Write-Host "Downloading Visual C++ Compiler November 2013 CTP..." -ForegroundColor Yellow;
|
57 | 59 | $CTP_INSTALLER_PATH = "$($env:TEMP)\$CTP_FILENAME";
|
|
0 commit comments