Skip to content

Commit

Permalink
Replace System.Data.SqlClient with Microsoft.Data.SqlClient.
Browse files Browse the repository at this point in the history
  • Loading branch information
mo-esmp committed Jan 10, 2021
1 parent 2b0f787 commit 311a38c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@

<ItemGroup>
<PackageReference Include="Dapper" Version="2.0.30" />
<PackageReference Include="System.Data.SqlClient" Version="4.8.1" />
<PackageReference Include="Microsoft.Data.SqlClient" Version="2.1.1" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<group targetFramework=".NETStandard2.0">
<dependency id="Microsoft.Extensions.DependencyInjection.Abstractions" version="3.1.3" exclude="Build,Analyzers" />
<dependency id="Dapper" version="2.0.30" exclude="Build,Analyzers" />
<dependency id="System.Data.SqlClient" version="4.8.1" exclude="Build,Analyzers" />
<dependency id="Microsoft.Data.SqlClient" version="2.1.1" exclude="Build,Analyzers" />
</group>
</dependencies>
</metadata>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using Dapper;
using Microsoft.Data.SqlClient;
using Serilog.Ui.Core;
using System.Collections.Generic;
using System.Data;
using System.Data.SqlClient;
using System.Text;
using System.Threading.Tasks;

Expand Down

0 comments on commit 311a38c

Please sign in to comment.