From 636a16c3010f4fa803cc9641ceed440bf3f32859 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20H=C3=B8yer?= Date: Fri, 15 Mar 2024 10:38:04 +0100 Subject: [PATCH] namespace after usings in generated code --- .../RecuringJobGenerator.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Scr/IeuanWalker.Hangfire.RecurringJob.Generator/RecuringJobGenerator.cs b/Scr/IeuanWalker.Hangfire.RecurringJob.Generator/RecuringJobGenerator.cs index 7ff4359..8c12d9c 100644 --- a/Scr/IeuanWalker.Hangfire.RecurringJob.Generator/RecuringJobGenerator.cs +++ b/Scr/IeuanWalker.Hangfire.RecurringJob.Generator/RecuringJobGenerator.cs @@ -93,12 +93,12 @@ static void Generate(SourceProductionContext context, ImmutableArray + sb.Append(@"// using Hangfire; -using Microsoft.AspNetCore.Builder; +using Microsoft.AspNetCore.Builder;"); + + sb.Append("namespace ").Append(assemblyName).Append(@"; public static class RecurringJobRegistrationExtensions {