Skip to content

Commit

Permalink
refactor(project): remove system.data.sqlclient dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
jrgcubano committed Apr 17, 2018
1 parent 0a7c1b5 commit 68b889a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/FluentNHibernate/Cfg/Db/MsSqlConnectionStringBuilder.cs
Expand Up @@ -69,9 +69,9 @@ protected internal override string Create()
if (!trustedConnection)
{
if (username.Contains(" "))
sb.AppendFormat(";User Id=\"{0}\"", username);
sb.AppendFormat(";User ID=\"{0}\"", username);
else
sb.AppendFormat(";User Id={0}", username);
sb.AppendFormat(";User ID={0}", username);

if (password.Contains(" "))
sb.AppendFormat(";Password=\"{0}\"", password);
Expand Down
1 change: 0 additions & 1 deletion src/FluentNHibernate/FluentNHibernate.csproj
Expand Up @@ -22,7 +22,6 @@

<ItemGroup>
<PackageReference Include="NHibernate" Version="5.1.1" />
<PackageReference Include="System.Data.SqlClient" Version="4.4.3" />
</ItemGroup>

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

0 comments on commit 68b889a

Please sign in to comment.