Wednesday, December 23, 2015

Error Type universe cannot resolve assembly: System.Runtime, Version=4.0.0.0, in Visual Studio 2016


How to fix the Error  Type universe cannot resolve assembly: System.Runtime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a

Run  the following command in the Package Manager Console 
PM> Install-Package Microsoft.NETCore.UniversalWindowsPlatform

4 comments:

Open default email app in .NET MAUI

Sample Code:  if (Email.Default.IsComposeSupported) {     string subject = "Hello!";     string body = "Excellent!";    ...