-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Closed as not planned
Labels
area-docsConceptual docs, API docs, SamplesConceptual docs, API docs, Samplesp/2Work that is important, but is currently not scheduled for releaseWork that is important, but is currently not scheduled for releaseplatform/androidplatform/iosplatform/macosmacOS / Mac CatalystmacOS / Mac Catalystplatform/windowss/verifiedVerified / Reproducible Issue ready for Engineering TriageVerified / Reproducible Issue ready for Engineering Triaget/bugSomething isn't workingSomething isn't workingt/docs 📝
Description
Description
Plenty of MAUI's API documentation is missing within VS IntelliSense, e. g. after typing
MauiApp.CreateBuilder().
none of the MauiAppBuilder
extensions, e. g. UseMauiApp<T>()
or even ConfigureFonts()
, provide any information besides their method signature due to missing XML docs within their source code:
maui/src/Controls/src/Xaml/Hosting/AppHostBuilderExtensions.cs
Lines 29 to 33 in 0ace122
public static partial class AppHostBuilderExtensions | |
{ | |
public static MauiAppBuilder UseMauiApp<[DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicConstructors)] TApp>(this MauiAppBuilder builder) | |
where TApp : class, IApplication | |
{ |
maui/src/Core/src/Hosting/Fonts/FontsMauiAppBuilderExtensions.cs
Lines 16 to 20 in 0ace122
} | |
public static MauiAppBuilder ConfigureFonts(this MauiAppBuilder builder, Action<IFontCollection>? configureDelegate) | |
{ | |
builder.Services.TryAddSingleton<IEmbeddedFontLoader>(svc => new EmbeddedFontLoader(svc)); |
Steps to Reproduce
- Create a File > New .NET MAUI App
- Go to
CreateMauiApp()
insideMauiProgram.cs
. - At the line with
MauiApp.CreateBuilder()
, type a.
after the closing parenthesis.
Version with bug
Release Candidate 3 (current)
Last version that worked well
Unknown/Other
Affected platforms
iOS, Android, Windows, macOS, Other (Tizen, Linux, etc. not supported by Microsoft directly)
Affected platform versions
Any supported platform version up to now
Did you find any workaround?
Nope. 😢
Relevant log output
None available. 😢
janseris and DoubleDBE
Metadata
Metadata
Assignees
Labels
area-docsConceptual docs, API docs, SamplesConceptual docs, API docs, Samplesp/2Work that is important, but is currently not scheduled for releaseWork that is important, but is currently not scheduled for releaseplatform/androidplatform/iosplatform/macosmacOS / Mac CatalystmacOS / Mac Catalystplatform/windowss/verifiedVerified / Reproducible Issue ready for Engineering TriageVerified / Reproducible Issue ready for Engineering Triaget/bugSomething isn't workingSomething isn't workingt/docs 📝