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

Commit

Permalink
Sign xstate binary from correct location (#19470)
Browse files Browse the repository at this point in the history
* Sign xstate binary from correct location

* Only submit xstate binary for x86
  • Loading branch information
mmitche authored Aug 13, 2018
1 parent f1c9358 commit 6ddb33a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/sign.builds
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,13 @@
<!-- Ensure cross targeting components are signed properly -->
<WindowsNativeLocation Include="$(BinDir)$(CrossTargetComponentFolder)\*.exe" />
<WindowsNativeLocation Include="$(BinDir)$(CrossTargetComponentFolder)\*.dll" />
</ItemGroup>

<ItemGroup Condition="'$(BuildArch)' == 'x86'">
<!-- Sign api-ms-win-core-xstate-l2-1-0 binary as it is only catalog signed in the current SDK. -->
<WindowsNativeLocation Include="$(BinDir)Redist\ucrt\DLLs\api-ms-win-core-xstate-l2-1-0.dll" />
<WindowsNativeLocation Include="$(BinDir)Redist\ucrt\DLLs\$(BuildArch)\api-ms-win-core-xstate-l2-1-0.dll" />
</ItemGroup>

<!-- sign the cross targeted files as well -->
<ItemGroup Condition="'$(CrossTargetComponentFolder)' != ''">
<WindowsNativeLocation Include="$(BinDir)$(CrossTargetComponentFolder)/*.dll" />
Expand Down

0 comments on commit 6ddb33a

Please sign in to comment.