diff options
author | Marcel Metz <[email protected]> | 2017-03-05 17:55:06 +0100 |
---|---|---|
committer | Marcel Metz <[email protected]> | 2017-03-06 10:23:11 +0100 |
commit | 2a08871fba72997bd8353019977b2b1b41d23e3f (patch) | |
tree | b93878321af4f2022fa8ea8e062854fa03f79aab /appveyor.yml | |
parent | 441180a08a86d940fdebd9c12f8fb5e1e4703026 (diff) |
Delete Xamarin.Common.targets on AppVeyor
This is a workaround for a Xamarin build script bug specific to
AppVeyor. For more details see:
http://help.appveyor.com/discussions/problems/4569
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml index 4010f2ea..80908b8c 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -7,6 +7,11 @@ environment: - GEN: "Visual Studio 14 2015 Win64" CFG: Release +install: + # Remove the VS Xamarin targets to reduce AppVeyor specific noise in build + # logs. See also http://help.appveyor.com/discussions/problems/4569 + - del "C:\Program Files (x86)\MSBuild\14.0\Microsoft.Common.targets\ImportAfter\Xamarin.Common.targets" + build_script: - cd build - cmake .. -G"%GEN%" |