Skip to content

Commit

Permalink
Fix 'Value cannot be null. (Parameter 'path2')' error (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesdevandiere authored Apr 28, 2021
1 parent 9cf198b commit 5a4fa4b
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/XMLDoc2Markdown/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,6 @@ static int Main(string[] args)

foreach (IGrouping<string, Type> groupedType in assembly.GetTypes().GroupBy(type => type.Namespace).OrderBy(g => g.Key))
{
string subDir = Path.Combine(@out, groupedType.Key);
if (!Directory.Exists(subDir))
{
Directory.CreateDirectory(subDir);
}

indexPage.AppendHeader(new MarkdownInlineCode(groupedType.Key), 2);

var list = new MarkdownList();
Expand Down

0 comments on commit 5a4fa4b

Please sign in to comment.