我正在一个 xamarinforms 项目中试用 Prism7 和 AutoFac。我正在尝试为条目控件创建一个自定义渲染器,这里没什么特别的。但由于某种原因,我无法在我的 ios 和 android 项目中获得对 xamarin.forms 和 xamarin.forms.platform.ios/android 命名空间的引用。
该项目基于prism7模板,pcl是.net 2.0
通常我会期望
[assembly: ExportRenderer(typeof(Entry), typeof(BorderlessEntryRenderer))]
工作和连接我的渲染器,但如上所述不能引用 xamarin.forms。
有人有ideer吗?