Merge remote-tracking branch 'origin/rel/2.0.0-preview1' into dev
This commit is contained in:
commit
cfc41d3845
|
|
@ -1,6 +1,14 @@
|
|||
<Project>
|
||||
<PropertyGroup>
|
||||
<AspNetCoreVersion>2.0.0-*</AspNetCoreVersion>
|
||||
<AspNetCoreVersion>2.0.0-*</AspNetCoreVersion>
|
||||
|
||||
<!--
|
||||
* 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-*
|
||||
-->
|
||||
<SqlClientVersion>4.4.0-*</SqlClientVersion>
|
||||
|
||||
<CoreFxVersion>4.3.0</CoreFxVersion>
|
||||
<InternalAspNetCoreSdkVersion>2.0.0-*</InternalAspNetCoreSdkVersion>
|
||||
<NETStandardImplicitPackageVersion>$(BundledNETStandardPackageVersion)</NETStandardImplicitPackageVersion>
|
||||
|
|
|
|||
|
|
@ -21,11 +21,11 @@
|
|||
<PackageReference Include="Microsoft.Extensions.CommandLineUtils.Sources" Version="$(AspNetCoreVersion)" PrivateAssets="All" />
|
||||
|
||||
<!--
|
||||
* Use 4.4.0-* instead of $(CoreFxVersion) to address "SqlClient fails with netcoreapp2.0 on Win7/Server2008"
|
||||
* Use $(SqlClientVersion) 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-*
|
||||
* Revert if and when $(CoreFxVersion) is upgraded to match $(SqlClientVersion)
|
||||
-->
|
||||
<PackageReference Include="System.Data.SqlClient" Version="4.4.0-*" />
|
||||
<PackageReference Include="System.Data.SqlClient" Version="$(SqlClientVersion)" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
|
|
|||
Loading…
Reference in New Issue