mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-02 19:42:05 -04:00
1) Updated all projects to .NET Framework 4.7.2. This was a necessary prerequisite for the core fix. 2) The core fix is to upgrade the version of MySql.Data to address an error when opening connections. There is some kind of nuget issue with updating to the latest version (8.0.32) so fell back to updating to version 8.0.31. This also causes the addition of several all dependant libraries. Opted to just keep those at whatever version was specified by MySql.Data for now. 3) With the upgrade to MySql.Data, there is a behavioral change with the way the .Prepare statemenet works, and now it's required that parameters be added BEFORE calling .Prepare. So I've maded adjustments to the calls to .Prepare.
15 lines
1009 B
XML
15 lines
1009 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<packages>
|
|
<package id="DotNetZip" version="1.10.1" targetFramework="net45" />
|
|
<package id="Google.Protobuf" version="3.19.4" targetFramework="net472" />
|
|
<package id="K4os.Compression.LZ4" version="1.2.6" targetFramework="net472" />
|
|
<package id="K4os.Compression.LZ4.Streams" version="1.2.6" targetFramework="net472" />
|
|
<package id="K4os.Hash.xxHash" version="1.0.6" targetFramework="net472" />
|
|
<package id="MySql.Data" version="8.0.31" targetFramework="net472" />
|
|
<package id="NLog" version="4.5.0" targetFramework="net451" />
|
|
<package id="Portable.BouncyCastle" version="1.9.0" targetFramework="net472" />
|
|
<package id="System.Buffers" version="4.5.1" targetFramework="net472" />
|
|
<package id="System.Memory" version="4.5.4" targetFramework="net472" />
|
|
<package id="System.Numerics.Vectors" version="4.5.0" targetFramework="net472" />
|
|
<package id="System.Runtime.CompilerServices.Unsafe" version="5.0.0" targetFramework="net472" />
|
|
</packages> |