New dev build

This commit is contained in:
2025-09-06 11:14:02 -05:00
parent 700cb81f24
commit 7c4f85ec21
28 changed files with 952 additions and 17 deletions

View File

@@ -39,7 +39,7 @@ public partial class NewProjectDialogViewModel : ViewModelBase
int i;
for (i = 1; i < int.MaxValue; i++)
{
string name2 = $"{name}{i}";
string name2 = $"{newName}{i}";
if (!Directory.Exists(Path.Combine(ParentDirectory, name2)))
{
Name = name2;