24 lines
1.2 KiB
XML
24 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<Target Name="GenerateArtifactChecksums"
|
|
DependsOnTargets="InitializeChecksumItemGroup;"
|
|
AfterTargets="GenerateInstallers"
|
|
Inputs="@(ArtifactsForGeneratingChecksums)"
|
|
Outputs="%(ArtifactsForGeneratingChecksums.DestinationPath)">
|
|
<GenerateChecksums Items="@(ArtifactsForGeneratingChecksums)" />
|
|
</Target>
|
|
|
|
<Target Name="InitializeChecksumItemGroup">
|
|
<ItemGroup>
|
|
<FilesToExcludeForChecksum Include="$(ArtifactsShippingPackagesDir)*.svg" />
|
|
<FilesToExcludeForChecksum Include="$(ArtifactsShippingPackagesDir)*.nupkg" />
|
|
<FilesToExcludeForChecksum Include="$(ArtifactsShippingPackagesDir)*.sha" />
|
|
<FilesToExcludeForChecksum Include="$(ArtifactsShippingPackagesDir)*.cab" />
|
|
<ArtifactsForGeneratingChecksums Include="$(ArtifactsShippingPackagesDir)*.*" Exclude="@(FilesToExcludeForChecksum)" />
|
|
|
|
<ArtifactsForGeneratingChecksums>
|
|
<DestinationPath>%(ArtifactsForGeneratingChecksums.Identity).sha</DestinationPath>
|
|
</ArtifactsForGeneratingChecksums>
|
|
</ItemGroup>
|
|
</Target>
|
|
</Project>
|