Skip to content

Commit

Permalink
Sign all assembly outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnSchmeichel committed Apr 19, 2023
1 parent 6d40d5b commit 51ac8a9
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 51ac8a9

Please sign in to comment.