Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
简而言之:我有一个图书馆。它目前不兼容 Windows Phone 8,我想这样做。我想知道的是,Visual Studio 是否有一种简单的方法可以将当前的类库项目从一个 .NET 版本移植到另一个版本?
您可以将项目更改为可移植类库 (PCL)。通常,您会从头开始使用 PCL,但是有一种转换现有库的 hacky 方法。此博客文章中对此进行了描述:
http://geekswithblogs.net/imilovanovic/archive/2012/08/31/vs2012---how-to-manually-convert-.net-class-library-to.aspx
一旦您的库是 PCL,您就可以启用 windows phone 作为目标,并且您将获得所有不可比较的异常。