Add copy-binary script

This commit is contained in:
Jonathan Jenne 2024-01-26 10:41:18 +01:00
parent c048b6ad6b
commit 808cdea86a

11
copy-binary.ps1 Normal file
View File

@ -0,0 +1,11 @@
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
}