是否可以在Xamarin项目中更改System.Runtime的版本?

问题描述 投票:0回答:1

我已经构建了一个NetStandard库的DLL,用于访问数据库。问题是在我的Xamarin Forms项目中引用DLL之后,我无法在我的库中使用任何函数,因为System.Runtime已经过时了。有什么方法可以更新项目中的System.Runtime程序集吗?

enter image description here

c# .net xamarin xamarin.forms
1个回答
0
投票

转到*.csprojBucketList.Api文件并更改该行:

<Reference Include="System.Runtime, Version=4.2.1.0, Culture=neutral, publicKeyToken=b04f5f711d50a3a">

至:

<Reference Include="System.Runtime, Version=4.1.2.0, Culture=neutral, publicKeyToken=b04f5f711d50a3a">

重新编译BucketList.Api DLL并引用它。

或者你可以尝试这个,这可能是合法的,也可能不是合法的:

<Reference Include="System.Runtime">
© www.soinside.com 2019 - 2024. All rights reserved.