Merge remote-tracking branch 'origin/rel/2.0.0-preview1' into dev

This commit is contained in:
Mike Harder 2017-04-27 13:38:01 -07:00
commit 4569b0e4de
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>