Since https://github.com/mysql-net/MySqlConnector/issues/1144, MySqlConnector is using the latest version of System.Threading.Tasks.Extension. This provides `ValueTask` on all platforms. Replace all uses of `ValueTask<int>` (that don't use the `.Result`) with a plain `ValueTask`.
Since #1144, MySqlConnector is using the latest version of System.Threading.Tasks.Extension. This provides
ValueTaskon all platforms.Replace all uses of
ValueTask<int>(that don't use the.Result) with a plainValueTask.