2015中创建后未构建Xamarin

2015中创建后未构建Xamarin

本文介绍了在Visual Studio 2015中创建后未构建Xamarin UWP项目的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我为Visual Studio 2015安装了Xamarin,并创建了Xamarin.Forms Portable项目.之后,我尝试构建解决方案.

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

但是我在UWP项目中遇到了一个错误:错误类型Universe无法解析程序集:Visual Studio 2015中的System.Runtime,版本= 4.0.0.0 .

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.

出什么问题了?

推荐答案

解决方案很简单.我通过程序包管理器控制台安装了Mirosoft.NETCore.UniversalWindowsPlatform程序包:
PM>安装包Microsoft.NETCore.UniversalWindowsPlatform

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

这篇关于在Visual Studio 2015中创建后未构建Xamarin UWP项目的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-21 17:39