mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 22:11:48 +08:00
19 lines
468 B
PowerShell
19 lines
468 B
PowerShell
param (
|
|
[string]
|
|
[Parameter(Mandatory=$true)]
|
|
$SolutionDir,
|
|
|
|
[string]
|
|
[Parameter(Mandatory=$true)]
|
|
$TargetDir
|
|
)
|
|
|
|
Write-Output "===== Beginning $($PSCmdlet.MyInvocation.MyCommand) ====="
|
|
Write-Output "Copying THEMES folder to output"
|
|
|
|
$sourceFiles = [io.path]::combine($SolutionDir , 'mRemoteV1\Resources\Themes' )
|
|
$DestinationDir = [io.path]::combine($TargetDir , 'Themes')
|
|
|
|
robocopy $sourceFiles $DestinationDir *.vstheme /s
|
|
|
|
Write-Output "" |