docs(xml): fill missing XML doc comments + strip task-tracking refs across src (fixdocs)
Add missing <summary>/<param>/<returns>/<typeparam> tags and switch interface implementations to <inheritdoc/> across 106 files; strip project bookkeeping identifiers (Task NN, #05-TNN, PLAN-04, StoreAndForward-0NN) from shipped code comments while preserving the descriptive rationale. Comment-only: zero code-logic lines changed; solution builds 0/0. Claude-Session: https://claude.ai/code/session_01MtdgwpEeCUn6cUA5f1LMPj
This commit is contained in:
+3
-2
@@ -57,7 +57,8 @@ public class NotificationRecipientConfiguration : IEntityTypeConfiguration<Notif
|
||||
|
||||
public class SmsConfigurationConfiguration : IEntityTypeConfiguration<SmsConfiguration>
|
||||
{
|
||||
/// <inheritdoc />
|
||||
/// <summary>Configures the EF Core mapping for <see cref="SmsConfiguration"/>.</summary>
|
||||
/// <param name="builder">The entity type builder.</param>
|
||||
public void Configure(EntityTypeBuilder<SmsConfiguration> builder)
|
||||
{
|
||||
builder.HasKey(s => s.Id);
|
||||
@@ -127,7 +128,7 @@ public class SmtpConfigurationConfiguration : IEntityTypeConfiguration<SmtpConfi
|
||||
.IsRequired()
|
||||
.HasMaxLength(500);
|
||||
|
||||
// Optional OAuth2 token-endpoint overrides — null preserves the M365 defaults.
|
||||
// Optional OAuth2 token-endpoint overrides — null preserves the Microsoft 365 defaults.
|
||||
builder.Property(s => s.OAuth2Authority)
|
||||
.IsRequired(false)
|
||||
.HasMaxLength(500);
|
||||
|
||||
Reference in New Issue
Block a user