diff --git a/ExtraConsole.Net/ExtraConsole - Backup.Net.csproj b/ExtraConsole.Net/ExtraConsole - Backup.Net.csproj new file mode 100644 index 0000000..0e0d152 --- /dev/null +++ b/ExtraConsole.Net/ExtraConsole - Backup.Net.csproj @@ -0,0 +1,40 @@ + + + + Exe + net6.0 + disable + disable + True + Logo_Symbol_Black_Outline.png + https://code.montoyatech.com/MontoyaTech/ExtraConsole.Net + MontoyaTech + MontoyaTech + MontoyaTech 2024 + https://code.montoyatech.com/MontoyaTech/ExtraConsole.Net + MontoyaTech;ExtraConsole.Net + MontoyaTech.ExtraConsole.Net + MontoyaTech.ExtraConsole.Net + 1.0.0 + MontoyaTech + MIT + README.md + An open source C# package that opens an extra console that can be written to similar to the main Console provided. You can open as many extra consoles as needed. + + + + + True + \ + + + True + \ + + + + + + + + diff --git a/ExtraConsole.Net/ExtraConsole.Net.csproj b/ExtraConsole.Net/ExtraConsole.Net.csproj index 8dddbbf..db0e417 100644 --- a/ExtraConsole.Net/ExtraConsole.Net.csproj +++ b/ExtraConsole.Net/ExtraConsole.Net.csproj @@ -15,7 +15,7 @@ MontoyaTech;ExtraConsole.Net MontoyaTech.ExtraConsole.Net MontoyaTech.ExtraConsole.Net - 1.0.0 + 1.0.1 MontoyaTech MIT README.md @@ -34,7 +34,7 @@ - + diff --git a/ExtraConsole.Net/ExtraConsole.cs b/ExtraConsole.Net/ExtraConsole.cs index 1426a8f..4f929e1 100644 --- a/ExtraConsole.Net/ExtraConsole.cs +++ b/ExtraConsole.Net/ExtraConsole.cs @@ -31,7 +31,7 @@ namespace MontoyaTech.ExtraConsole.Net RedirectStandardInput = true }; - this._process = WinProcess.Create(startInfo, creationFlags: WinProcess.CreationFlags.CREATE_NEW_CONSOLE); + this._process = WinProcess.Start(startInfo, creationFlags: WinProcess.CreationFlags.CREATE_NEW_CONSOLE); this._writer = this._process.StandardInput; }