Questions tagged «portable-class-library»

16
生成错误:您必须添加对System.Runtime的引用
我正在准备一个全新的ASP.NET MVC 5.1解决方案。我要添加一堆NuGet软件包,并使用Zurb Foundation等对其进行设置。 作为其中的一部分,我添加了对内部NuGet包的引用,该包是可移植类库,我认为这会在构建服务器上引起问题。 TeamCity通过以下操作使构建失败: 类型'System.Object'是在未引用的程序集中定义的。您必须添加对程序集'System.Runtime,版本= 4.0.0.0的引用 我最初是在编译Razor网页时添加了针对相同或相似错误的修复程序,该修复程序位于 web.config <compilation ... > <assemblies> <add assembly="System.Runtime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /> </assemblies> </compilation> 但是,此问题尚未解决。

4
什么是可移植类库?
在MSDN上,我注意到Portable Class Library版本信息下有关的部分。 请参阅System.Object示例。http://msdn.microsoft.com/zh-CN/library/system.object.aspx 我做了一个简短的Google搜索,找不到关于的任何信息Portable Class Library。这里有人知道它是什么吗,或者在哪里可以找到更多有关它的信息?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.