Skip to content
This repository was archived by the owner on Dec 14, 2018. It is now read-only.

Commit 1747875

Browse files
authored
Upgrade System.Data.SqlClient to 4.4.0-* (#300)
- 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-*
1 parent 7282ae8 commit 1747875

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/Microsoft.Extensions.Caching.SqlServer/Microsoft.Extensions.Caching.SqlServer.csproj

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,12 @@
2222
</ItemGroup>
2323

2424
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.2' ">
25-
<PackageReference Include="System.Data.SqlClient" Version="$(CoreFxVersion)" />
25+
<!--
26+
* Use 4.4.0-* instead of $(CoreFxVersion) to address "SqlClient fails with netcoreapp2.0 on Win7/Server2008"
27+
* https://github.com/dotnet/corefx/issues/18406
28+
* Revert if and when $(CoreFxVersion) is upgraded to 4.4.0-*
29+
-->
30+
<PackageReference Include="System.Data.SqlClient" Version="4.4.0-*" />
2631
</ItemGroup>
2732

2833
</Project>

0 commit comments

Comments
 (0)