From 8684a181819ed4799cf11a338101600ccb34db43 Mon Sep 17 00:00:00 2001 From: Jeremy Koritzinsky Date: Mon, 27 Mar 2017 17:09:18 -0500 Subject: [PATCH 1/2] Update appveyor.yml to use the VS2017 image Update appveyor.yml to use the VS2017 image since the VS2017 RC image no longer exists. --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 76f991d38e..c5e5ea4f29 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -os: Visual Studio 2017 RC +os: Visual Studio 2017 platform: - Any CPU configuration: From 6ecefda0017d34ed49fbee13a51bd102d25874bf Mon Sep 17 00:00:00 2001 From: Jeremy Koritzinsky Date: Fri, 31 Mar 2017 11:40:54 -0500 Subject: [PATCH 2/2] Trying suggestion from wieslawsoltes --- appveyor.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index c5e5ea4f29..3c36c2fcd3 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -11,10 +11,10 @@ environment: secure: OtVfyN3ErqQrDTnWH2HDfJDlCiu/i4/X4wFmK3ZXXP7HmCiXYPSbTjMPwwdOxRaK MYGET_API_URL: https://www.myget.org/F/avalonia-ci/api/v2/package install: - - if not exist dotnet-1.0.1.exe appveyor DownloadFile https://go.microsoft.com/fwlink/?linkid=843448 -FileName "dotnet-1.0.1.exe" - if not exist gtk-sharp-2.12.26.msi appveyor DownloadFile http://download.xamarin.com/GTKforWindows/Windows/gtk-sharp-2.12.26.msi - - msiexec /i gtk-sharp-2.12.26.msi /qn /norestart - - cmd: call dotnet-1.0.1.exe /quiet + - if not exist dotnet-1.0.1.exe appveyor DownloadFile https://go.microsoft.com/fwlink/?linkid=843448 -FileName "dotnet-1.0.1.exe" + - ps: Start-Process -FilePath "msiexec" -ArgumentList "/i gtk-sharp-2.12.26.msi /quiet /qn /norestart" -Wait + - ps: Start-Process -FilePath "dotnet-1.0.1.exe" -ArgumentList "/quiet" -Wait - cmd: set PATH=%programfiles(x86)%\GtkSharp\2.12\bin\;%PATH% before_build: - git submodule update --init