When using a custom ContentPage for some reason I get namespace compile errors on the below line in the .xaml.g.cs files
public partial class MyClass : global::Xamarin.Forms.BaseContentPage {
When I remove "global::Xamarin.Forms." (because the base class is not in that namespace anyway) The app then compiles and works! Currently I am still able to get it running but every time I change any code in the xaml file it gets regenerated and the error persists!
Any ideas how to solve this?
Alex