Skip to content

Commit

Permalink
[Xamarin.Android.Build.Tasks] Ignore XA0115 for Shared Runtime builds. (
Browse files Browse the repository at this point in the history
#2293)

Fixes: #2289

When doing debug shared runtime builds the user generally does not
care what ABI is used.  As a result we should only be showing the
`XA0115` warning when they are NOT using the shared runtime.
  • Loading branch information
dellis1972 authored and jonpryor committed Oct 13, 2018
1 parent de94423 commit 41b8abb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ Copyright (C) 2011-2012 Xamarin. All rights reserved.
<_RequestedAbis>;$(AndroidSupportedAbis);</_RequestedAbis>
</PropertyGroup>
<Warning Code="XA0115"
Condition="$(_RequestedAbis.Contains(';armeabi;'))"
Condition="$(_RequestedAbis.Contains(';armeabi;')) And '$(AndroidUseSharedRuntime)' != 'True'"
Text="This ABI ('armeabi') is deprecated and will be removed in the next release. Please update your project properties."
/>
</Target>
Expand Down

0 comments on commit 41b8abb

Please sign in to comment.