V0.7.0
#489
Replies: 1 comment
-
Cross Compilation
It's now compatible, natively, with:
MySqlConnectorThe
Be careful, the MySql namespace has changed from Version using MySql.Data.MySqlClient; Version using MySqlConnector; IF you are using cross compilation, you can use directives: #if NETCOREAPP
using MySqlConnector;
#elif NETSTANDARD
using MySql.Data.MySqlClient;
#endif |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
v0.7.0
has been released : https://www.nuget.org/packages?q=Dotmim.SyncUpgrade to version v0.7.0
Do not forget to call the UpgradeAsync method to upgrade your current schema version to
v0.7.0
!UpgradeAsync
, since it's handled by default byDMS
RemoteOrchestrator
with the correctSyncSetup
and call theUpgradeAsync
methodOnce upgraded your schema should be updated to
0.7.0
:New features and issues fixed
DMS
is now cross compiled for.Net 5
,.Net Core 3.1
,.Net Standard 2.0
: V0.7.0 #489 (comment)Beta Was this translation helpful? Give feedback.
All reactions