Fix sign check

- most likely cause of failing official builds
- small typo in #10340: need to find .cab files _below_ `$(TargetDir)`
This commit is contained in:
Doug Bunting 2019-05-17 19:37:02 -07:00 committed by Doug Bunting
parent e953537307
commit 5502c2080e
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@
AfterTargets="Build">
<Copy SourceFiles="$(TargetPath)" DestinationFolder="$(InstallersOutputPath)" />
<ItemGroup>
<_cabs Include="$(TargetDir)\*.cab" />
<_cabs Include="$(TargetDir)**/*.cab" />
</ItemGroup>
<Copy SourceFiles="@(_cabs)" DestinationFolder="$(InstallersOutputPath)" />
</Target>