12 lines
250 B
PowerShell
12 lines
250 B
PowerShell
param(
|
|
[String]$SourcePath,
|
|
[String]$FileName,
|
|
[String]$Configuration
|
|
)
|
|
|
|
if ($Configuration -eq "Release") {
|
|
$DestinationPath = "P:\Install .Net\0 DD - Bibliotheken\Modules\$FileName"
|
|
Copy-Item $SourcePath -Destination $DestinationPath
|
|
}
|
|
|