Upgrade System.Data.SqlClient to 4.4.0-* (#287)

- Addresses "SqlClient fails with netcoreapp2.0 on Win7/Server2008" (https://github.com/dotnet/corefx/issues/18406)
- Revert if and when $(CoreFxVersion) is upgraded to 4.4.0-*
This commit is contained in:
Mike Harder 2017-04-27 13:37:20 -07:00 committed by GitHub
parent 08799573e0
commit 3a248e22c8
1 changed files with 7 additions and 1 deletions

View File

@ -19,7 +19,13 @@
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.CommandLineUtils.Sources" Version="$(AspNetCoreVersion)" PrivateAssets="All" />
<PackageReference Include="System.Data.SqlClient" Version="$(CoreFxVersion)" />
<!--
* Use 4.4.0-* instead of $(CoreFxVersion) to address "SqlClient fails with netcoreapp2.0 on Win7/Server2008"
* https://github.com/dotnet/corefx/issues/18406
* Revert if and when $(CoreFxVersion) is upgraded to 4.4.0-*
-->
<PackageReference Include="System.Data.SqlClient" Version="4.4.0-*" />
</ItemGroup>
</Project>