You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
either I'm doing something wrong, or the PlatformSpecific.Analyzer is not working in Visual Studio 2017 at all.
If I create new UWP project in VS2017, TargetVersion 15063. MinVersion 10586, add PlatformSpecific.Analyzer NuGet v2.3.0 and add this snippet, no warning is shown anywhere.
private void Wv_PermissionRequested(WebView sender, WebViewPermissionRequestedEventArgs args)
{
switch (args.PermissionRequest.PermissionType)
{ // WebNotifications is only available in Anniversary Update and later
case WebViewPermissionType.WebNotifications:
Debug.WriteLine("error");
break;
}
}
The text was updated successfully, but these errors were encountered:
Any update on this issue? Again the PlatformSpecific.Analyzer is useless if targeting Anniversary Update or newer SDK.
I just randomly found one bug today that I use API from Creators Update when testing our app on Anniversary Update.
Hi,
either I'm doing something wrong, or the PlatformSpecific.Analyzer is not working in Visual Studio 2017 at all.
If I create new UWP project in VS2017, TargetVersion 15063. MinVersion 10586, add PlatformSpecific.Analyzer NuGet v2.3.0 and add this snippet, no warning is shown anywhere.
The text was updated successfully, but these errors were encountered: