Toss the filename at the top of the infoprint output

This commit is contained in:
Matt Nadareski
2025-09-07 20:52:02 -04:00
parent ce016c5eb0
commit 45d4926d4c

View File

@@ -137,6 +137,8 @@ namespace InfoPrint
Console.WriteLine(builder);
using var sw = new StreamWriter(File.OpenWrite($"{filenameBase}.txt"));
sw.WriteLine(file);
sw.WriteLine();
sw.WriteLine(builder.ToString());
sw.Flush();
}