diff --git a/eng/Versions.props b/eng/Versions.props
index fd8dd0187c..a82c119e96 100644
--- a/eng/Versions.props
+++ b/eng/Versions.props
@@ -21,17 +21,17 @@
8.0.2
6.9.1
2.88.8
- 4.6.0-preview.1.24529.4
+ 4.6.0-rtm.24561.10
8.0.0
8.0.0
6.0.1
8.0.1
5.0.0
- 4.6.0-preview.1.24529.4
+ 4.6.0-rtm.24561.10
8.0.0
4.7.0
4.3.0
- 6.1.0-preview.1.24529.4
+ 6.1.0-rtm.24561.10
5.0.0
8.0.0
8.0.5
@@ -40,7 +40,7 @@
14.0.2
3.27.1
3.3.5
- 6.0.0-preview.1.24529.4
+ 6.0.0-rtm.24561.10
9.0.0-rc.1.24431.7
3.3.4
4.9.2
@@ -48,6 +48,8 @@
1.18.1
0.0.0.12
9.0.0-preview.9.24507.7
+
+ 4.4.0
@@ -99,7 +101,7 @@
0.0.6-test
0.0.7-test
2.0.0-beta.24455.2
- 4.8.6
+ 4.9.0-rtm.24561.10
1.0.118
1.6.24
diff --git a/test/Microsoft.ML.Tests/DatabaseLoaderTests.cs b/test/Microsoft.ML.Tests/DatabaseLoaderTests.cs
index c2cc8d37a6..2c70e5a9cb 100644
--- a/test/Microsoft.ML.Tests/DatabaseLoaderTests.cs
+++ b/test/Microsoft.ML.Tests/DatabaseLoaderTests.cs
@@ -275,6 +275,7 @@ public void TestLoadDatetimeColumnWithNullValue()
private DatabaseSource GetIrisDatabaseSource(string command, int commandTimeoutInSeconds = 30)
{
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
+#pragma warning disable CS0618 // 'SqlClientFactory' is obsolete: 'Use the Microsoft.Data.SqlClient package instead.'
return new DatabaseSource(
SqlClientFactory.Instance,
GetMSSQLConnectionString(TestDatasets.irisDb.name),
@@ -286,6 +287,7 @@ private DatabaseSource GetIrisDatabaseSource(string command, int commandTimeoutI
GetSQLiteConnectionString(TestDatasets.irisDbSQLite.name),
String.Format(command, TestDatasets.irisDbSQLite.trainFilename),
commandTimeoutInSeconds);
+#pragma warning restore CS0618 // 'SqlClientFactory' is obsolete: 'Use the Microsoft.Data.SqlClient package instead.'
}
private string GetMSSQLConnectionString(string databaseName)
diff --git a/test/Microsoft.ML.Tests/Microsoft.ML.Tests.csproj b/test/Microsoft.ML.Tests/Microsoft.ML.Tests.csproj
index 046327bb79..3d86ce561f 100644
--- a/test/Microsoft.ML.Tests/Microsoft.ML.Tests.csproj
+++ b/test/Microsoft.ML.Tests/Microsoft.ML.Tests.csproj
@@ -54,6 +54,7 @@
+