diff --git a/src/Microsoft.DotNet.PackageTesting/GetCompatiblePackageTargetFrameworks.cs b/src/Microsoft.DotNet.PackageTesting/GetCompatiblePackageTargetFrameworks.cs index 95c7a89efcf..fa10507cc1b 100644 --- a/src/Microsoft.DotNet.PackageTesting/GetCompatiblePackageTargetFrameworks.cs +++ b/src/Microsoft.DotNet.PackageTesting/GetCompatiblePackageTargetFrameworks.cs @@ -140,7 +140,7 @@ public string GetRidsFromPackage(Package package) if (item.AssetType == AssetType.RuntimeAsset) { string testRid = item.Rid; - string testArch = "-x64"; + string testArch = testRid == "browser" ? "-wasm" : "-x64"; if (testRid == "unix") { if (!rids.Contains("linux" + testArch))