It was a misfortune - I need to write an application on UWP. Of course, I design everything according to the MVC model. It is much more convenient for me to test and develop models in a console application, and it so often happens that those classes that worked perfectly for the console app do not find the definition of classes in the UWP application and vice versa. So how to write as cross-platform as possible?
I understand, for example, the class for working with the camera may not work in the console application, but in order that the encryption or serialization classes do not work ... then I ask you to forgive me - to hell the developers of all this!
I have a library, but when I connect it, I get an error:
If I create a portable library and specify the target UWP platform, then it does not know about the existence of such classes as: BinaryFormatter, Aes, AesCryptoServiceProvider, CryptoStream, Serializable. This is, in principle, logical, because they did not bother to add them to the UWP! Besides how to write your own implementation algorithms, can you somehow transfer these classes? Is there at least some kind of cross-platform ???
