This commit is contained in:
JC Aguilera 2017-09-14 14:08:14 -07:00 коммит произвёл GitHub
Родитель 0b2b4208e8
Коммит 74fe13aa42
1 изменённых файлов: 5 добавлений и 0 удалений

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

@ -19,6 +19,7 @@
<OutDir Condition="'$(OutDir)' == ''">$(BaseOutputRootPath)/</OutDir>
<IntermediateOutputPath Condition="'$(IntermediateOutputPath)' == ''">$(IntermediateOutputRootPath)</IntermediateOutputPath>
</PropertyGroup>
<Error Condition="!Exists('$(OutDir)')" Text="'OutDir' folder '$(OutDir)' does not exist."/>
</Target>
<Target Name="SignBinaries" DependsOnTargets="GetSignBinaryFiles">
@ -49,6 +50,7 @@
<Authenticode>$(CertificateId)</Authenticode>
</FilesToSign>
</ItemGroup>
<Error Condition="'@(FilesToSign)' == ''" Text="There are no files to sign. FilesToSign group is empty."/>
</Target>
<Target Name="SignMsiAndCab" DependsOnTargets="GetSignMsiAndCabFiles">
@ -64,6 +66,7 @@
<Authenticode>$(CertificateId)</Authenticode>
</FilesToSign>
</ItemGroup>
<Error Condition="'@(FilesToSign)' == ''" Text="There are no files to sign. FilesToSign group is empty."/>
</Target>
<Target Name="SignEngine" DependsOnTargets="GetSignEngineFiles">
@ -76,6 +79,7 @@
<Authenticode>$(CertificateId)</Authenticode>
</FilesToSign>
</ItemGroup>
<Error Condition="'@(FilesToSign)' == ''" Text="There are no files to sign. FilesToSign group is empty."/>
</Target>
<Target Name="SignBundle" DependsOnTargets="GetSignBundleFiles">
@ -88,6 +92,7 @@
<Authenticode>$(CertificateId)</Authenticode>
</FilesToSign>
</ItemGroup>
<Error Condition="'@(FilesToSign)' == ''" Text="There are no files to sign. FilesToSign group is empty."/>
</Target>
</Project>