I am currently looking at using .NET Core 2.0 so that I can run my app on multiple platforms.
One thing I need to do is take an incoming string and deseralise it in
For me i could not connect to mysql database and i was getting this error "Could not load file or assembly 'System.Security.Permissions, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ffffd51".
I resolved it by using nuget package manager to install Mysql.Data and also installed System.Security.Permissions. This solved my problem.