|
4 | 4 | # GENERATED SOURCE CODE, DO NOT EDIT EXCEPT EXPERIMENTALLY |
5 | 5 | # |
6 | 6 | ############################################################################### |
7 | | -version: 3.0.0.{build}-{branch} |
| 7 | +version: 3.4.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-server |
13 | 12 | skip_tags: true |
@@ -41,11 +40,14 @@ before_build: |
41 | 40 | | Where-Object { $_.DisplayName -and $_.DisplayName.Contains($product_name) } ` |
42 | 41 | | Select UninstallString).UninstallString |
43 | 42 | } |
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; |
46 | 45 | & $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; |
49 | 51 | & $env:temp\uninstall.cmd; |
50 | 52 | Write-Host "Downloading Visual C++ Compiler November 2013 CTP..." -ForegroundColor Yellow; |
51 | 53 | $CTP_INSTALLER_PATH = "$($env:TEMP)\$CTP_FILENAME"; |
|
0 commit comments