[android] fix binding warnings from FormsViewGroup (#1117)

Building Xamarin.Forms gives warnings such as:
```
BINDINGSGENERATOR (0, 0)
BINDINGSGENERATOR(0,0): Warning BG8800: Unknown parameter type
System.Xml.XmlReader in method CreateFromXml in managed type
Android.Content.Res.ColorStateList.
BINDINGSGENERATOR (0, 0)
BINDINGSGENERATOR(0,0): Warning BG8800: Unknown parameter type
System.Xml.XmlReader in method CreateFromXml in managed type
Android.Content.Res.ColorStateList.
BINDINGSGENERATOR (0, 0)
BINDINGSGENERATOR(0,0): Warning BG8800: Unknown parameter type
System.Xml.XmlReader in method ParseBundleExtras in managed type
Android.Content.Res.Resources.
BINDINGSGENERATOR (0, 0)
BINDINGSGENERATOR(0,0): Warning BG8800: Unknown parameter type
System.Xml.XmlReader in method CreateFromXml in managed type
Android.Graphics.Drawables.Drawable.
```

For now you can just add a reference to System.Xml to fix this.
This commit is contained in:
Jonathan Peppers 2017-08-30 10:43:52 -05:00 коммит произвёл Rui Marinho
Родитель dd662f4041
Коммит ac80d35bf3
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -52,6 +52,7 @@
<Reference Include="Mono.Android" />
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\Xamarin.Forms.Core\Properties\GlobalAssemblyInfo.cs">