Enable warnings 0649 and 0067 on UAP/WinRT (#73)

This commit is contained in:
kingces95 2016-04-11 16:56:07 -07:00 коммит произвёл Jason Smith
Родитель 6072149ad4
Коммит 16e88315e1
4 изменённых файлов: 7 добавлений и 3 удалений

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

@ -98,7 +98,9 @@ namespace Xamarin.Forms.Platform.UWP
get { return Element; }
}
#pragma warning disable 0067 // Revisit: Can't remove; required by interface
public event EventHandler<VisualElementChangedEventArgs> ElementChanged;
#pragma warning restore
public SizeRequest GetDesiredSize(double widthConstraint, double heightConstraint)
{

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

@ -27,7 +27,7 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<NoWarn>1998;0649;0169;0067</NoWarn>
<NoWarn>1998;0618;0169</NoWarn>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
@ -38,7 +38,7 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<NoWarn>1998;0649;0169;0067</NoWarn>
<NoWarn>1998;0618;0169</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|ARM'">
<PlatformTarget>ARM</PlatformTarget>

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

@ -628,7 +628,7 @@ namespace Xamarin.Forms.Platform.WinRT
}
#endif
bool _deferSelection;
bool _deferSelection = false;
Tuple<object, SelectedItemChangedEventArgs> _deferredSelectedItemChangedEvent;
}
}

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

@ -34,7 +34,9 @@ namespace Xamarin.Forms.Platform.WinRT
return true;
}
#pragma warning disable 0067 // Revisit: Can't remove; required by interface
public event EventHandler CanExecuteChanged;
#pragma warning restore
public void Execute(object parameter)
{