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:
parent
e953537307
commit
5502c2080e
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in New Issue