-
-
Save justinyoo/2bd15eb73e0bc68674e155e5559fa54e to your computer and use it in GitHub Desktop.
CD on VSTS for .NET Core Apps
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add-Type -AssemblyName "System.IO.Compression.FileSystem" | |
$source = "$BuildStagingDirectory\$projectName" | |
$destination = "$BuildStagingDirectory\$projectName.zip" | |
[IO.Compression.ZipFile]::CreateFromDirectory($source, $destination) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment