在我的Xamarin.Forms, .NET标准共享项目中,这一点很有效,直到我将目标版本从1.4改为2.0
private bool IsFirstLaunch()
{
return !Application.Current.Properties.ContainsKey(AppResources.Key_AppLaunchedForFirstTime);
}
所有内容编译良好,但我收到运行时错误CS0103:名称' AppResources'在当前上下文中不存在
答案 0 :(得分:0)
哦,对不起,我还没有完成https://developer.xamarin.com/guides/xamarin-forms/under-the-hood/net-standard/
中的所有迁移步骤