We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5514095 commit 46c86f0Copy full SHA for 46c86f0
Generator/CodeGenerator.cs
@@ -6,7 +6,7 @@ public class CodeGenerator(ChannelReader<ClassDefinition> channel)
6
{
7
private static readonly HashSet<string> _excludedFolders = new(StringComparer.OrdinalIgnoreCase) { "bin", "obj" };
8
9
- private readonly DirectoryInfo _targetDirectory = FindTypesDirectory();;
+ private readonly DirectoryInfo _targetDirectory = FindTypesDirectory();
10
private readonly Dictionary<string, ClassDefinition> _classDefinitions = new(StringComparer.OrdinalIgnoreCase);
11
12
public async Task GenerateCode()
0 commit comments