Skip to content

Commit

Permalink
Merge pull request #236 from microsoft/dev/jestedfa/managedsdk-strong…
Browse files Browse the repository at this point in the history
…name-fix

Only StroneName the AssemblyName.winmd file if it exists
  • Loading branch information
jstedfast authored Nov 22, 2022
2 parents 4a22621 + 3e7379a commit 4d26388
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/Microsoft.Xaml.Behaviors.Signing.targets
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<Authenticode>Microsoft400</Authenticode>
<StrongName>StrongName</StrongName>
</FilesToSign>
<FilesToSign Include="$(OutputPath)$(AssemblyName).winmd" Condition="!($(AssemblyName.Contains('.Design')) OR $(AssemblyName.Contains('.DesignTools')))">
<FilesToSign Include="$(OutputPath)$(AssemblyName).winmd" Condition="(!($(AssemblyName.Contains('.Design')) OR $(AssemblyName.Contains('.DesignTools')))) AND Exists('$(OutputPath)$(AssemblyName).winmd')">
<Authenticode>Microsoft400</Authenticode>
<StrongName>StrongName</StrongName>
</FilesToSign>
Expand Down

0 comments on commit 4d26388

Please sign in to comment.