我已经建立了用于访问数据库的NetStandard库的DLL。问题是,在Xamarin Forms项目中引用DLL后,由于System.Runtime
已过时,因此无法使用库中的任何函数。有什么方法可以更新项目中的System.Runtime
程序集?
答案 0 :(得分:0)
转到 this.localNotifications.schedule({
id: this.id,
title: this.data.description,
text: 'Daily Payment Reminder for '+ this.data.description+ ' '+ 'Amount: €' + this.data.amount,
trigger: {count:1 ,firstAt:new Date(this.data.date) },
every: "day",
data: {"id": this.id, "name": this.id},
foreground: true,
actions: [
{ id: 'yes', title: 'Yes' },
{ id: 'no', title: 'No' }
],
});
的{{1}}文件并更改行:
*.csproj
收件人:
BucketList.Api
重新编译<Reference Include="System.Runtime, Version=4.2.1.0, Culture=neutral, publicKeyToken=b04f5f711d50a3a">
DLL并引用它。
或者,您可以尝试这样做,这可能是合法的,也可能不是合法的:
<Reference Include="System.Runtime, Version=4.1.2.0, Culture=neutral, publicKeyToken=b04f5f711d50a3a">