Don't try creating tar.gz archive on Windows

This commit is contained in:
Daniel Plaisted 2018-11-07 18:17:30 -08:00
parent cc776c8b44
commit f4209b9de6

View file

@ -1,6 +1,6 @@
<Project>
<Target Name="GenerateArchives"
DependsOnTargets="GenerateLayout"
DependsOnTargets="GenerateLayout;GetCurrentRuntimeInformation"
AfterTargets="Build">
<ZipFileCreateFromDirectory
@ -9,6 +9,7 @@
OverwriteDestination="true" />
<TarGzFileCreateFromDirectory
Condition=" '$(OSName)' != 'win' "
SourceDirectory="$(RedistLayoutPath)"
DestinationArchive="$(ArtifactsShippingPackagesDir)$(ArtifactNameWithVersionSdk).tar.gz"
OverwriteDestination="true" />