Skip to content

Commit abba151

Browse files
committed
chore: Resolve docfx build issues from xml comments and image resources
1 parent 79b8d3b commit abba151

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

doc/docfx.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
{
5959
"files": [
6060
"images/logo/*.{png,ico}",
61-
"articles/.attachments/*.png"
61+
"articles/.attachments/*.{png,gif}"
6262
],
6363
"dot": true
6464
}

src/DevTKSS.Uno.Samples.MvuxGallery/Models/CodeSamples/ServiceCollectionExtension.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public static class ServiceCollectionExtension
1313
/// <param name="sectionName">The optional configuration section name. If not provided, <paramref name="serviceName"/> is used.</param>
1414
/// <returns>The <see cref="IServiceCollection"/> for chaining.</returns>
1515
/// <remarks>
16-
/// This method assumes configuration for the named <see cref="CodeSampleOptions"/> is provided (e.g., via UseConfiguration().Section<T>()).
16+
/// This method assumes configuration for the named <see cref="CodeSampleOptions"/> is provided (e.g., via UseConfiguration().Section&lt;T&gt;()).
1717
/// It registers a keyed singleton <see cref="ICodeSampleService"/> that consumes those named options.
1818
/// </remarks>
1919
public static IServiceCollection AddKeyedSingletonCodeService(this IServiceCollection services, string serviceName, string? sectionName = null)

src/DevTKSS.Uno.Samples.MvuxGallery/Presentation/ViewModels/DashboardModel.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,6 @@ public DashboardModel(
5656
/// </summary>
5757
/// <param name="ct">A <see cref="CancellationToken"/> to make the method compileable.</param>
5858
/// <returns>An awaitable <see cref="ValueTask{TResult}"/> providing an <see cref="ImmutableList{T}"/> of <see langword="string"/> with the sample names to select from.</returns>
59-
/// <remarks>
60-
/// Since `ListFeed.Async` requires a <see cref="CancellationToken"/> even if Uno documentation remarks this parameter to be optional,
61-
/// adding the type <see cref="string"/> or <see cref="IImmutableList{T}"/> to the `ListFeed` like `ListFeed<string>.Async(...)`,
62-
/// or to the Async extension itself like `ListFeed.Async<IImmutableList{string}>` results in a type mismatch.
63-
/// </remarks>
6459
public static async ValueTask<IImmutableList<string>> GetCodeSampleOptionsAsync(CancellationToken ct = default)
6560
{
6661
// since `ListFeed.Async` requires a CancellationToken even if Uno Documentation remarks this parameter to be optional.< br />

0 commit comments

Comments
 (0)