You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since sometime last week, I get this compile error when I try to compile my .NET MAUI Project:
The type or namespace name 'MauiUIApplicationDelegate' could not be found (are you missing a using directive or an assembly reference?)
First of all, I thought one of the nightly builds did not get built correctly, but I still get this, e.g. when I use the build from tonight: <MauiVersion>8.0.7-nightly.9895</MauiVersion>. The Reference <MauiVersion>8.0.6-nightly.9880</MauiVersion> was still working.
Was there a breaking change or am I missing something now?
This also happens for these lines at the MauiPicker
protectedoverridevoidConnectHandler(MauiPickerplatformView){base.ConnectHandler(platformView);vartoolbar=(UIToolbar)platformView.InputAccessoryView;// Set custom text for the Done buttonvardoneButtonText=newNSString(AppResources.DoneButtonText);DoneButton=newUIBarButtonItem(doneButtonText,UIBarButtonItemStyle.Done,(sender,e)=>{this.PlatformView.EndEditing(true);});// Add the button to the toolbar previously createdtoolbar.Items=newUIBarButtonItem[]{newUIBarButtonItem(UIBarButtonSystemItem.FlexibleSpace),DoneButton};this.PlatformView.InputAccessoryView=toolbar;}```
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Since sometime last week, I get this compile error when I try to compile my .NET MAUI Project:
The type or namespace name 'MauiUIApplicationDelegate' could not be found (are you missing a using directive or an assembly reference?)
First of all, I thought one of the nightly builds did not get built correctly, but I still get this, e.g. when I use the build from tonight:
<MauiVersion>8.0.7-nightly.9895</MauiVersion>
. The Reference<MauiVersion>8.0.6-nightly.9880</MauiVersion>
was still working.Was there a breaking change or am I missing something now?
This also happens for these lines at the
MauiPicker
Beta Was this translation helpful? Give feedback.
All reactions