diff --git a/TypedDataLayer/DataAccess/DBConnection.cs b/TypedDataLayer/DataAccess/DBConnection.cs
index a68c8ec..0318f15 100644
--- a/TypedDataLayer/DataAccess/DBConnection.cs
+++ b/TypedDataLayer/DataAccess/DBConnection.cs
@@ -2,9 +2,9 @@
using System.Collections.Generic;
using System.Data;
using System.Data.Common;
-using System.Data.SqlClient;
using System.IO;
using System.Linq;
+using Microsoft.Data.SqlClient;
using StackExchange.Profiling;
using StackExchange.Profiling.Data;
using TypedDataLayer.DatabaseSpecification;
diff --git a/TypedDataLayer/DataAccess/DataAccessMethods.cs b/TypedDataLayer/DataAccess/DataAccessMethods.cs
index c895c1c..ead8565 100644
--- a/TypedDataLayer/DataAccess/DataAccessMethods.cs
+++ b/TypedDataLayer/DataAccess/DataAccessMethods.cs
@@ -1,7 +1,7 @@
using System;
-using System.Data.SqlClient;
using System.Linq;
using System.Threading;
+using Microsoft.Data.SqlClient;
using TypedDataLayer.DataAccess.CommandWriting.InlineConditionAbstraction;
using TypedDataLayer.DatabaseSpecification;
using TypedDataLayer.DatabaseSpecification.Databases;
diff --git a/TypedDataLayer/DatabaseSpecification/Databases/SqlServerInfo.cs b/TypedDataLayer/DatabaseSpecification/Databases/SqlServerInfo.cs
index 87b29db..7970a93 100644
--- a/TypedDataLayer/DatabaseSpecification/Databases/SqlServerInfo.cs
+++ b/TypedDataLayer/DatabaseSpecification/Databases/SqlServerInfo.cs
@@ -1,7 +1,7 @@
using System;
using System.Data;
using System.Data.Common;
-using System.Data.SqlClient;
+using Microsoft.Data.SqlClient;
using StackExchange.Profiling;
using StackExchange.Profiling.Data;
using TypedDataLayer.Tools;
diff --git a/TypedDataLayer/TypedDataLayer.csproj b/TypedDataLayer/TypedDataLayer.csproj
index a2c3d0c..6410327 100644
--- a/TypedDataLayer/TypedDataLayer.csproj
+++ b/TypedDataLayer/TypedDataLayer.csproj
@@ -19,9 +19,9 @@
+
-