Use TargetPath for signing files (#6485)

This commit is contained in:
Pavel Krymets 2019-01-08 10:08:09 -08:00 committed by GitHub
parent 326e329018
commit 3b1a89c1fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@
<Target Name="GetVcxprojFilesToSign" BeforeTargets="SignFiles">
<ItemGroup>
<FilesToSign Include="$(OutDir)$(TargetName)$(TargetExt)" Condition="'$(ConfigurationType)' == 'DynamicLibrary'" Authenticode="Microsoft400" />
<FilesToSign Include="$(TargetPath)" Condition="'$(ConfigurationType)' == 'DynamicLibrary'" Authenticode="Microsoft400" />
</ItemGroup>
</Target>