Skip to content

Commit f9e9511

Browse files
authored
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-*
1 parent d940c1e commit f9e9511

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

test/MusicStore.E2ETests/MusicStore.E2ETests.csproj

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,14 @@
2828
<PackageReference Include="Microsoft.Extensions.Logging" Version="$(AspNetCoreVersion)" />
2929
<PackageReference Include="Microsoft.Extensions.Logging.Testing" Version="$(AspNetCoreVersion)" />
3030
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="$(TestSdkVersion)" />
31-
<PackageReference Include="System.Data.SqlClient" Version="$(CoreFxVersion)" />
31+
32+
<!--
33+
* Use 4.4.0-* instead of $(CoreFxVersion) to address "SqlClient fails with netcoreapp2.0 on Win7/Server2008"
34+
* https://github.com/dotnet/corefx/issues/18406
35+
* Revert if and when $(CoreFxVersion) is upgraded to 4.4.0-*
36+
-->
37+
<PackageReference Include="System.Data.SqlClient" Version="4.4.0-*" />
38+
3239
<PackageReference Include="System.Xml.XmlDocument" Version="$(CoreFxVersion)" />
3340
<PackageReference Include="xunit.runner.visualstudio" Version="$(XunitVersion)" />
3441
<PackageReference Include="xunit" Version="$(XunitVersion)" />

0 commit comments

Comments
 (0)