a fork of iceshrimp.net but a tweaked frontend to my personal liking. waow
fediverse social-media social iceshrimp fedi
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

[backend/core] Enable OpenAPI XML documentation comments from Iceshrimp.Shared

authored by

pancakes and committed by
Iceshrimp development
8f6a6716 a6925bbd

+6 -1
+3
Iceshrimp.Backend/Core/Extensions/ServiceExtensions.cs
··· 103 103 104 104 options.AddFilters(); 105 105 106 + // Include XML comments from Iceshrimp.Backend 106 107 options.IncludeXmlComments(Assembly.GetExecutingAssembly()); 108 + // Include XML comments from Iceshrimp.Shared 109 + options.IncludeXmlComments(typeof(AuthResponse).Assembly); 107 110 }); 108 111 } 109 112
+3 -1
Iceshrimp.Shared/Iceshrimp.Shared.csproj
··· 1 1 <Project Sdk="Microsoft.NET.Sdk"> 2 - 2 + <PropertyGroup> 3 + <GenerateDocumentationFile>true</GenerateDocumentationFile> 4 + </PropertyGroup> 3 5 </Project>