Skip to content

Commit

Permalink
Merge pull request #391 from microsoft/johsch/sign-outputs
Browse files Browse the repository at this point in the history
Sign all assembly outputs
  • Loading branch information
JohnSchmeichel authored Apr 19, 2023
2 parents 25c1c46 + 51ac8a9 commit 0ddbe1b
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,16 @@
</PropertyGroup>

<ItemGroup>
<FilesToSign Include="$(OutDir)/$(TargetFileName)">
<FilesToSign Include="$(OutDir)$(TargetFileName)">
<Authenticode>Microsoft400</Authenticode>
<StrongName>StrongName</StrongName>
</FilesToSign>
<FilesToSign Include="$(IntermediateOutputPath)/$(TargetFileName)">
<FilesToSign Include="$(IntermediateOutputPath)$(TargetFileName)">
<Authenticode>Microsoft400</Authenticode>
<StrongName>StrongName</StrongName>
</FilesToSign>
<FilesToSign Include="$(IntermediateOutputPath)apphost.exe" Condition=" '$(UseAppHost)' == 'true' ">
<Authenticode>Microsoft400</Authenticode>
</FilesToSign>
</ItemGroup>
</Project>

0 comments on commit 0ddbe1b

Please sign in to comment.