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:
parent
08799573e0
commit
3a248e22c8
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in New Issue