Skip to content

Commit

Permalink
..
Browse files Browse the repository at this point in the history
  • Loading branch information
coenm committed Sep 8, 2024
1 parent 177b990 commit c3b3965
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/RepoM.ActionMenu.CodeGen/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -85,15 +85,22 @@ public static async Task Main()

var processedProjects = new Dictionary<string, ProjectDescriptor>();


Console.WriteLine("Compiling projects ..");
foreach (var project in projects)
{
var fullCsProjectFilename = Path.Combine(srcFolder, project, $"{project}.csproj");
Console.WriteLine($" - {fullCsProjectFilename} .. ");

FileSystemHelper.CheckFile(fullCsProjectFilename);

ProjectDescriptor projectDescriptor = await CompileAndExtractProjectDescription(compile, fullCsProjectFilename, project, files);
processedProjects.Add(project, projectDescriptor);
Console.WriteLine(" done");
}

Console.WriteLine(string.Empty);

Dictionary<string, List<MemberDescriptor>> _allTypes2 = new();

foreach ((var projectName, ProjectDescriptor project) in processedProjects)
Expand Down Expand Up @@ -177,8 +184,7 @@ public static async Task Main()
}
}
}



// Generate plugin documentation
foreach ((var projectName, ProjectDescriptor? project) in processedProjects)
{
Expand Down

0 comments on commit c3b3965

Please sign in to comment.