dwmkerr / consolecontrol

ConsoleControl is a C# class library that lets you embed a console in a WinForms or WPF application.
MIT License
723 stars 169 forks source link

Allow ProcessStartInfo to start processes on WinForms #50

Closed justalemon closed 4 years ago

justalemon commented 4 years ago

I had this problem where I was allowed to use a ProcessStartInfo class on WPF but no function was available on WinForms.

Is the same as StartProcess(string, string) but with a ProcessStartInfo object.

dwmkerr commented 4 years ago

Hi @justalemon any reason you closed this? Do you think it would be a useful to have in the library?

justalemon commented 4 years ago

any reason you closed this?

I didn't saw any recent activity, so I closed it thinking that the project was no longer maintained.

Do you think it would be a useful to have in the library?

This is pretty useful for changing stuff like the working directory before starting the process on Windows Forms, and is already implemented in the WPF version so it was something easy to do.