Co-authored-by: Michael Simons <msimons@microsoft.com>
This commit is contained in:
parent
83d785ccfb
commit
e2c796b8c1
2 changed files with 24 additions and 1 deletions
24
eng/AfterSigning.targets
Normal file
24
eng/AfterSigning.targets
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
<Project>
|
||||||
|
<PropertyGroup>
|
||||||
|
<_SuppressSdkImports>false</_SuppressSdkImports>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<Target Name="PopulateGenerateChecksumItems"
|
||||||
|
AfterTargets="Build"
|
||||||
|
BeforeTargets="GenerateChecksums" >
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<InstallerFiles Include="$(ArtifactsShippingPackagesDir)**\*.msi" />
|
||||||
|
<InstallerFiles Include="$(ArtifactsShippingPackagesDir)**\*.exe" />
|
||||||
|
<InstallerFiles Include="$(ArtifactsShippingPackagesDir)**\*.zip" Exclude="$(ArtifactsShippingPackagesDir)**\*.wixpack.zip" />
|
||||||
|
<InstallerFiles Include="$(ArtifactsShippingPackagesDir)**\*.tar.gz" />
|
||||||
|
<InstallerFiles Include="$(ArtifactsShippingPackagesDir)**\*.deb" />
|
||||||
|
<InstallerFiles Include="$(ArtifactsShippingPackagesDir)**\*.rpm" />
|
||||||
|
<GenerateChecksumItems Include="%(InstallerFiles.Identity)" >
|
||||||
|
<DestinationPath>%(FullPath).sha512</DestinationPath>
|
||||||
|
</GenerateChecksumItems>
|
||||||
|
</ItemGroup>
|
||||||
|
</Target>
|
||||||
|
|
||||||
|
<Import Project="Sdk.targets" Sdk="Microsoft.DotNet.Arcade.Sdk" />
|
||||||
|
</Project>
|
|
@ -47,5 +47,4 @@
|
||||||
<Import Project="targets\GeneratePKG.targets" />
|
<Import Project="targets\GeneratePKG.targets" />
|
||||||
<Import Project="targets\GenerateInstallers.targets" />
|
<Import Project="targets\GenerateInstallers.targets" />
|
||||||
<Import Project="targets\Badge.targets" />
|
<Import Project="targets\Badge.targets" />
|
||||||
<Import Project="targets\Checksum.targets" />
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
Loading…
Reference in a new issue