initial
This commit is contained in:
34
Setup/CopySourceFiles.cmd
Normal file
34
Setup/CopySourceFiles.cmd
Normal 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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user