We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d235132 commit 2e931ddCopy full SHA for 2e931dd
1 file changed
src/ViewModels/ScanRepositories.cs
@@ -93,8 +93,10 @@ public override async Task<bool> Sure()
93
await minDelay;
94
95
var normalizedRoot = rootDir.FullName.Replace('\\', '/').TrimEnd('/');
96
- foreach (var f in found)
+ for (var i = 0; i < found.Count; i++)
97
{
98
+ var f = found[i];
99
+ ProgressDescription = $"Registering ({i + 1}/{found.Count}) {f}...";
100
var parent = new DirectoryInfo(f).Parent!.FullName.Replace('\\', '/').TrimEnd('/');
101
if (parent.Equals(normalizedRoot, StringComparison.OrdinalIgnoreCase))
102
0 commit comments