Skip to content

Commit 1ae1f03

Browse files
committed
[deps] Switch from System.Data.SqlClient to Microsoft.Data.SqlClient 6.1.2
1 parent 38dada8 commit 1ae1f03

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Simplify.EntityFramework/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212

1313
### Dependencies
1414

15+
- Switch from System.Data.SqlClient to Microsoft.Data.SqlClient 6.1.2
1516
- Microsoft.EntityFrameworkCore to 9.0.9
1617
- Microsoft.Extensions.Configuration.Abstractions to 9.0.9
17-
- System.Data.SqlClient bump to 4.9
1818

1919
## [1.0] - 2024-01-14
2020

src/Simplify.EntityFramework/SettingsBasedConnectionString.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System.Data.SqlClient;
1+
using Microsoft.Data.SqlClient;
22
using Microsoft.Extensions.Configuration;
33
using Simplify.EntityFramework.Settings;
44
using Simplify.EntityFramework.Settings.Impl;

src/Simplify.EntityFramework/Simplify.EntityFramework.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<ItemGroup>
2424
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.9" />
2525
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="9.0.9" />
26-
<PackageReference Include="System.Data.SqlClient" Version="4.9.0" />
26+
<PackageReference Include="Microsoft.Data.SqlClient" Version="6.1.2" />
2727
</ItemGroup>
2828
<ItemGroup>
2929
<None Include="..\..\images\icon.png" Pack="true" Visible="false" PackagePath="" />

0 commit comments

Comments
 (0)