Bumped package version and fixed a minor bug.

This commit is contained in:
2024-09-12 14:55:18 -07:00
parent a92653396f
commit 7904840274
3 changed files with 6 additions and 2 deletions

View File

@@ -12,6 +12,10 @@ namespace MontoyaTech.ExtraConsole.Net.Example
console2.Open();
console2.WriteLine("Hello second console!");
var console3 = new ExtraConsole();
console3.Open();
console3.WriteLine("This is a third console!");
Console.ReadLine();
}
}