Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CreateRelease.GUI.ps1 « build - github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1312b43940b99a594b9eedd8dd7f90c12b92fcf6 (plain)
1
2
3
4
5
6
7
8
9
10
cd $PSScriptRoot
cd ..
$version = (Get-Command UVtools.GUI\bin\Release\UVtools.Core.dll).FileVersionInfo.FileVersion

Remove-Item "UVtools.GUI\bin\Release\Logs" -Recurse -ErrorAction Ignore

Add-Type -A System.IO.Compression.FileSystem
[IO.Compression.ZipFile]::CreateFromDirectory("UVtools.GUI\bin\Release", "UVtools.GUI\bin\UVtools_v$version.zip")

Copy-Item "UVtools.Installer\bin\Release\UVtools.msi" -Destination "UVtools.GUI\bin\UVtools_v$version.msi"