Fix signing of satellite assemblies.

This commit is contained in:
Andrew Arnott 2015-02-04 06:52:25 -08:00
Родитель 554b54b2d9
Коммит e805c5b833
1 изменённых файлов: 7 добавлений и 0 удалений

Просмотреть файл

@ -20,4 +20,11 @@
<FilesToSign Include="$(TargetPath)" Condition=" '$(DevDivProjectType)' == 'product' " />
<FilesToSign Include="$(TargetDir)$(TargetName).vsix" Condition=" '$(DevDivProjectType)' == 'vsix' " />
</ItemGroup>
<!-- Add the satellite resource assemblies to be signed. Time this such that localization has already done its work. -->
<Target Name="CollectFilesToSign" BeforeTargets="SignFiles" Condition=" '$(Nonshipping)' != 'true' ">
<ItemGroup>
<FilesToSign Include="$(OutDir)Localize\*\$(TargetName).resources$(TargetExt)" />
</ItemGroup>
</Target>
</Project>