Skip to content
This repository has been archived by the owner on May 1, 2024. It is now read-only.

Commit

Permalink
Add preserve attributes so the linker won't ruin my UI test
Browse files Browse the repository at this point in the history
  • Loading branch information
hartez committed Jun 17, 2019
1 parent 39f594b commit 7bb6e25
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ namespace Xamarin.Forms.Controls.Issues
[Issue(IssueTracker.Github, 6077, "CollectionView (iOS) using horizontal grid does not display last column of uneven item count", PlatformAffected.iOS)]
public class Issue6077 : TestNavigationPage
{
[Preserve(AllMembers = true)]
public class MainViewModel : INotifyPropertyChanged
{
readonly IList<ItemModel> _items;
Expand Down Expand Up @@ -73,6 +74,7 @@ protected void OnPropertyChanged([CallerMemberName] string propertyName = "")
#endregion
}

[Preserve(AllMembers = true)]
public class ItemModel
{
public string Title { get; set; }
Expand Down

0 comments on commit 7bb6e25

Please sign in to comment.