This commit is contained in:
Meik
2026-03-05 09:56:57 +01:00
parent 838e6b1ee1
commit 4013fa8e32
827 changed files with 743038 additions and 0 deletions

34
Setup/CopySourceFiles.cmd Normal file
View File

@@ -0,0 +1,34 @@
set Vers=Release
set Org=..\bin\%Vers%
set Src=.\Source
del /F /S /Q %Src%\*.*
rd /S /Q %Src%
md %Src%
copy /Y "%Org%\Customer Panel.exe" %Src%
copy /Y "%Org%\*.dll" %Src%
copy /Y "%Org%\Customer Panel.exe.config" %Src%
copy /Y "%Org%\C4IT.Matrix.MsGatewayAuthentication.dll.config" %Src%
copy /Y "%Org%\Microsoft.WindowsAPICodePack.dll" %Src%
copy /Y "%Org%\Microsoft.WindowsAPICodePack.Shell.dll" %Src%
for %%i in (de) do (
md %Src%\%%i
copy /Y %Org%\%%i\*.* %Src%\%%i
)
:: WebView2
if exist "%Org%\runtimes" (
xcopy /E /I "%Org%\runtimes" "%Src%\runtimes"
)
for %%f in ("%Org%\Microsoft.Web.WebView2*.dll") do (
copy /Y "%%f" %Src%
)
pause