Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xamarin UWP project is not being built after creating in Visual Studio 2015

I installed Xamarin for Visual Studio 2015 and I created Xamarin.Forms Portable project. After that I have tried to build solution.

But I got an error for UWP project: Error Type universe cannot resolve assembly: System.Runtime, Version=4.0.0.0, in Visual Studio 2015.

What is the problem?

like image 725
Ruslan Borovok Avatar asked Jul 06 '16 16:07

Ruslan Borovok


1 Answers

The solution was simple. I installed Mirosoft.NETCore.UniversalWindowsPlatform package via the Package Manager Console:
PM> Install-Package Microsoft.NETCore.UniversalWindowsPlatform

like image 98
Ruslan Borovok Avatar answered Oct 03 '22 02:10

Ruslan Borovok