Fix failing test when building the win-arm shared framework
This commit is contained in:
parent
fd1a5b43f1
commit
dcba1953de
|
|
@ -142,7 +142,7 @@ namespace Microsoft.AspNetCore
|
|||
Assert.NotEmpty(obj.Value["fileVersion"].Value<string>());
|
||||
});
|
||||
|
||||
if (_expectedRid.StartsWith("win"))
|
||||
if (_expectedRid.StartsWith("win", StringComparison.Ordinal) && !_expectedRid.Contains("arm"))
|
||||
{
|
||||
Assert.All(runtimeLibrary["native"], item =>
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue