在 Xamarin Forms 从 4.7 到 4.8.0.1560 版本,在 Xamarin Forms 构建 WPF 版项目也许会提示 XamlC error XFC0000 : Cannot resolve type “Application” 构建失败
提示内容如下
代码语言:javascript复制App.xaml : error : : XamlC error XFC0000 : Cannot resolve type "Application".
AppShell.xaml : error : : XamlC error XFC0000 : Cannot resolve type "Shell".
Views/AboutPage.xaml : error : : XamlC error XFC0000 : Cannot resolve type "ContentPage".
Views/ItemDetailPage.xaml : error : : XamlC error XFC0000 : Cannot resolve type "ContentPage".
Views/ItemsPage.xaml : error : : XamlC error XFC0000 : Cannot resolve type "ContentPage".
Views/NewItemPage.xaml : error : : XamlC error XFC0000 : Cannot resolve type "ContentPage".
如 [Bug] XAML compiler broke with 4.7.0 · Issue #11101 · xamarin/Xamarin.Forms 所说,一个可以使用的方法是 Michael Schnerring 大佬提供的方法
在 csproj 中添加如下代码
代码语言:javascript复制<ItemGroup>
<EmbeddedResource Remove="**/*.xaml" />
</ItemGroup>
详细请看 https://github.com/xamarin/Xamarin.Forms/issues/11101#issuecomment-678329339
另一个方法是我的方法,删除所有的 App.xaml 和 MainWindow.xaml 等文件,如 https://github.com/lindexi/lindexi_gd/tree/96c9063fdba9fe318eb099da67422de5cc9ae5af/XamarinNeller/XamarinNeller.WPF 项目所示,这样也能构建成功。细节请看 WPF 从零手动创建承载 Xamarin Forms 项目