Skip to content

Commit 9113cbf

Browse files
committed
Fix typo in generated Host namespace
1 parent 1d2a861 commit 9113cbf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

EnumSourceGenerator/HostGenerator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public void Initialize(IncrementalGeneratorInitializationContext context)
5050
sb.AppendLine("using System.Collections.Generic;");
5151
sb.AppendLine("using System.Reflection;");
5252
sb.AppendLine();
53-
sb.AppendLine($"namespace {projectName}.Genenerated;");
53+
sb.AppendLine($"namespace {projectName}.Generated;");
5454
sb.AppendLine("public sealed class Host : IDisposable");
5555
sb.AppendLine("{");
5656
sb.AppendLine(" private readonly Dictionary<Type, object> _singletonInstances = new();");

SimpleInjection/SimpleInjection.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1010
<PackageId>SimpleInjection</PackageId>
11-
<Version>0.9.8.3</Version>
11+
<Version>0.9.8.4</Version>
1212
<Authors>Derek Gooding</Authors>
1313
<Company>Derek Gooding</Company>
1414
<Description>

0 commit comments

Comments
 (0)