Merged PR 590834: Add System.Threading.Tasks.Extensions to cacheBindingRedirects

Add System.Threading.Tasks.Extensions to cacheBindingRedirects to avoid binding failures when running tests in Visual Studio.
This commit is contained in:
Sergey Tepliakov 2020-12-28 22:00:46 +00:00
Родитель c0cafd9d52
Коммит f5d76a0e38
2 изменённых файлов: 8 добавлений и 1 удалений

Просмотреть файл

@ -494,6 +494,13 @@ export function cacheBindingRedirects() {
oldVersion: "0.0.0.0-4.99.99.99",
newVersion: "4.0.2.1", // Corresponds to: { id: "System.IO.Pipelines", version: "4.7.2", dependentPackageIdsToSkip: ["System.Threading.Tasks.Extensions"] },
},
{
name: "System.Threading.Tasks.Extensions", // Version=4.2.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51
publicKeyToken: "cc7b13ffcd2ddd51",
culture: "neutral",
oldVersion: "0.0.0.0-4.99.99.99",
newVersion: "4.2.0.1", // Corresponds to: { id: "System.Threading.Tasks.Extensions" },
},
{
name: "System.Memory",
publicKeyToken: "cc7b13ffcd2ddd51",

Просмотреть файл

@ -225,7 +225,7 @@ export const pkgs = [
// NOTE(jubayard): If you depend on this package and need to build for Net472, you will need to add the
// dependency manually, using netstandard2.0 targetFramework qualifier. Dependency clipped because it
// causes a deployment conflict for the cache.
{ id: "System.Threading.Tasks.Extensions", version: "4.5.4",
{ id: "System.Threading.Tasks.Extensions", version: "4.5.4", // If you change this version, please change cacheBindingRedirects in BuildXLSdk.dsc
dependentPackageIdsToSkip: ["System.Runtime.CompilerServices.Unsafe"] },
{ id: "System.Security.Cryptography.OpenSsl", version: "4.4.0" },