Upgrade System.Data.SqlClient to 4.4.0-* (#785)
- 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
d940c1eb75
commit
f9e9511435
|
|
@ -28,7 +28,14 @@
|
|||
<PackageReference Include="Microsoft.Extensions.Logging" Version="$(AspNetCoreVersion)" />
|
||||
<PackageReference Include="Microsoft.Extensions.Logging.Testing" Version="$(AspNetCoreVersion)" />
|
||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="$(TestSdkVersion)" />
|
||||
<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-*" />
|
||||
|
||||
<PackageReference Include="System.Xml.XmlDocument" Version="$(CoreFxVersion)" />
|
||||
<PackageReference Include="xunit.runner.visualstudio" Version="$(XunitVersion)" />
|
||||
<PackageReference Include="xunit" Version="$(XunitVersion)" />
|
||||
|
|
|
|||
Loading…
Reference in New Issue