I have two .NET Winform applications (A and B) inherited from WindowsFormsApplicationBase which are developed on same framework.
In the Main class code if I set IsSingleInstance = False, it runs A and B simultaneously but it can also run multiple instances of A (or B) simultaneously. I have to avoid running more than one instance of A or B at same time.
Any ideas?