我有一个要在VS2019中编译的Xamarin应用,但出现此错误:
无法解析引用:
System.Web
,由ApiPrototypeClientMobile
>XXX.Core
引用。请为System.Web
添加NuGet程序包或程序集引用,或删除对ApiPrototypeClientMobile
的引用。
其中XXX是我的应用程序的名称。
我试图在ApiPrototypeClientMobile.Android项目中添加对System.Net(和System.Web.Services的引用)。我会将它们添加到ApiPrototypeClientMobile,但由于该项目是.NET Standard类库,因此无法对该项目执行此操作。我还尝试将System.Net.Http作为NuGet程序包添加到ApiPrototypeClientMobile项目,但这也没有帮助。没有要添加的System.Web。如何摆脱这个错误,以便我可以建立项目?谢谢! :)