Remove statics and threadstatic so that we can pass options around

This commit is contained in:
Yaakov 2020-05-23 19:05:09 +10:00
parent b817c75720
commit c658b437b5
9 changed files with 143 additions and 80 deletions

View file

@ -0,0 +1,7 @@
namespace Notepad.Extensions.Logging
{
interface IWindowFinder
{
WindowInfo FindNotepadWindow();
}
}