Hello. I write C# WPF MVVM Prism 6 application using MS VS 2015 Professional in Windows 10 64-bites OS. The solution is consisting of:
1) Shell (main window) project,
1) Multiple Prism modules projects,
2) ClassLibrary project with global access from all these Prism modules and from Shell.
I need shared access to one SerialPort instance from all Prism modules in the application for communication with outer device.
What...