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 comment generation

authored by

pancakes and committed by
Iceshrimp development
04c7a3b5 a6016496

+9 -1
+5 -1
Directory.Build.props
··· 16 16 17 17 <!-- Except low and medium severity vulnerable dependency warnings from TreatWarningsAsErrors, leaving high and critical severity ones intact --> 18 18 <PropertyGroup> 19 - <WarningsNotAsErrors>$(WarningsNotAsErrors),NU1901,NU1902</WarningsNotAsErrors> 19 + <WarningsNotAsErrors>$(WarningsNotAsErrors),NU1901,NU1902,CS1573,CS1591</WarningsNotAsErrors> 20 + </PropertyGroup> 21 + 22 + <PropertyGroup> 23 + <NoWarn>$(NoWarn),CS1591</NoWarn> 20 24 </PropertyGroup> 21 25 22 26 <!-- When DependencyVulnsAsError is not set, also suppress the remaining dependency vulnerability warnings -->
+2
Iceshrimp.Backend/Core/Extensions/ServiceExtensions.cs
··· 102 102 }); 103 103 104 104 options.AddFilters(); 105 + 106 + options.IncludeXmlComments(Assembly.GetExecutingAssembly()); 105 107 }); 106 108 } 107 109
+2
Iceshrimp.Backend/Iceshrimp.Backend.csproj
··· 7 7 <PublishTrimmed>false</PublishTrimmed> 8 8 <!-- Makes sure that we compile against the correct native dependency --> 9 9 <UseCurrentRuntimeIdentifier>true</UseCurrentRuntimeIdentifier> 10 + <!-- Generate OpenAPI documentation from XML comments --> 11 + <GenerateDocumentationFile>true</GenerateDocumentationFile> 10 12 </PropertyGroup> 11 13 12 14 <Import Project="..\Iceshrimp.Build\Iceshrimp.Build.props" />