You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
IDbColumnSchemaGenerator is available since .NET 4.7.1. However, if you install MySqlConnector into a .NET 4.7.2 project, it references the net461 library, which doesn't use that interface, rather than the netstandard2.0 library (which might be more appropriate).
We probably need to fix this by targeting net471 (which introduced the interface) for .NET Framework clients.
We should also check if any other new APIs are supported by net471 (and greater).
Finally, the #if check is wrong and blocks the API from netcoreapp2.1. Most likely, all #if checks should be rewritten to be negative, so that APIs are enabled by default.
The text was updated successfully, but these errors were encountered:
IDbColumnSchemaGenerator
is available since .NET 4.7.1. However, if you install MySqlConnector into a .NET 4.7.2 project, it references thenet461
library, which doesn't use that interface, rather than thenetstandard2.0
library (which might be more appropriate).We probably need to fix this by targeting
net471
(which introduced the interface) for .NET Framework clients.We should also check if any other new APIs are supported by
net471
(and greater).Finally, the
#if
check is wrong and blocks the API fromnetcoreapp2.1
. Most likely, all#if
checks should be rewritten to be negative, so that APIs are enabled by default.The text was updated successfully, but these errors were encountered: