7 lines
219 B
PowerShell
Executable file
7 lines
219 B
PowerShell
Executable file
dotnet publish -p:PublishProfile=Windows
|
|
$compress = @{
|
|
Path = "out\release\windows\buypeeb.exe"
|
|
DestinationPath = "out\release\windows\buypeeb.zip"
|
|
Force = $True
|
|
}
|
|
Compress-Archive @compress
|