I updated Visual Studio and now I am getting a lot of messages like this:
public ICommand OpenWebPageCmd => new Command<string>(async (url) =>
{
await Browser.OpenAsync(new Uri(url), BrowserLaunchMode.SystemPreferred);
});
Asynchronous method 'Anonymous' should not return void
I saw some other answers that were not specific to this extension. Is there any way I can resolve this when using the Browser option to open a new page?