Skip to content

Commit 68b889a

Browse files
committed
refactor(project): remove system.data.sqlclient dependency
1 parent 0a7c1b5 commit 68b889a

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/FluentNHibernate/Cfg/Db/MsSqlConnectionStringBuilder.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ protected internal override string Create()
6969
if (!trustedConnection)
7070
{
7171
if (username.Contains(" "))
72-
sb.AppendFormat(";User Id=\"{0}\"", username);
72+
sb.AppendFormat(";User ID=\"{0}\"", username);
7373
else
74-
sb.AppendFormat(";User Id={0}", username);
74+
sb.AppendFormat(";User ID={0}", username);
7575

7676
if (password.Contains(" "))
7777
sb.AppendFormat(";Password=\"{0}\"", password);

src/FluentNHibernate/FluentNHibernate.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222

2323
<ItemGroup>
2424
<PackageReference Include="NHibernate" Version="5.1.1" />
25-
<PackageReference Include="System.Data.SqlClient" Version="4.4.3" />
2625
</ItemGroup>
2726

2827
<ItemGroup Condition="'$(TargetFramework)' == 'net461'">

0 commit comments

Comments
 (0)