Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.

Commit

Permalink
Fix the package restore for arm64 and arm32
Browse files Browse the repository at this point in the history
  • Loading branch information
jashook committed Jun 28, 2017
1 parent aff5a08 commit 987c2fc
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tests/src/dir.props
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,13 @@
<PropertyGroup>
</PropertyGroup>
</When>
<When Condition="'$(OSGroup)'=='Windows_NT'">
<When Condition="'$(OSGroup)'=='Windows_NT' AND ('$(__BuildArch)'=='arm64' OR '$(__BuildArch)'=='arm')">
<PropertyGroup>
<TargetsWindows>true</TargetsWindows>
<TestNugetRuntimeId>win-$(__BuildArch)</TestNugetRuntimeId>
</PropertyGroup>
</When>
<When Condition="'$(OSGroup)'=='Windows_NT' AND '$(__BuildArch)'!='arm64' AND '$(__BuildArch)'!='arm'">
<PropertyGroup>
<TargetsWindows>true</TargetsWindows>
<TestNugetRuntimeId>win7-$(__BuildArch)</TestNugetRuntimeId>
Expand Down

0 comments on commit 987c2fc

Please sign in to comment.