You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
766 B
21 lines
766 B
New-Item "$PSScriptRoot\Portable\bin" -ItemType Directory -Force
|
|
|
|
# --- GUI ---
|
|
|
|
# Get files
|
|
$files = @()
|
|
$files += Get-Item -Path "$PSScriptRoot\..\License.txt"
|
|
$files += Get-ChildItem -Path "$PSScriptRoot\..\DiscordChatExporter.Gui\bin\Release\*" -Include "*.exe", "*.dll", "*.config"
|
|
|
|
# Pack into archive
|
|
$files | Compress-Archive -DestinationPath "$PSScriptRoot\Portable\bin\DiscordChatExporter.zip" -Force
|
|
|
|
# --- CLI ---
|
|
|
|
# Get files
|
|
$files = @()
|
|
$files += Get-Item -Path "$PSScriptRoot\..\License.txt"
|
|
$files += Get-ChildItem -Path "$PSScriptRoot\..\DiscordChatExporter.Cli\bin\Release\net46\*" -Include "*.exe", "*.dll", "*.config"
|
|
|
|
# Pack into archive
|
|
$files | Compress-Archive -DestinationPath "$PSScriptRoot\Portable\bin\DiscordChatExporter.CLI.zip" -Force |