Click here to Skip to main content
15,902,112 members

Comments by SureshMunna (Top 17 by date)

SureshMunna 25-Oct-18 6:57am View    
ok
SureshMunna 25-Oct-18 6:49am View    
64d.dll files are copying with that filter, but 64.dll(2files) are not copying
SureshMunna 25-Oct-18 6:48am View    
second xcopy is not working with that filter
SureshMunna 25-Oct-18 5:24am View    
how to copy the subfolder form source to destination.
xcopy /s /i /y %~dp0\..\windows\Resources %~dp0\..\..\build\windows\x64\%value%
I need to copy the Entire Resources folder to x64, but the above mentioned xcopy is copying the inside the resource files..instead of entire folder.
SureshMunna 24-Oct-18 6:37am View    
set SOLUTION_PATH="%~dp0\..\..\VSSolution\Customer2013.sln"
set SOLUTION_PATH1="%~dp0\..\..\..\..\Customer1\Customer1.sln"

set mode=%1
echo %REL_PATH%
if /I "%mode%" == "release" (
set value="Release"
set filter="*64.dll"
) else (
set value="Debug"
set filter="*64d.dll"
)
echo "Build Mode set as %value%"
SET str1=debug
SET str2=release

if %str1%==%value%
echo "Starting Debug Build for Customer solution"
devenv %SOLUTION_PATH% /rebuild Debug
echo "Starting Debug Build for Customer1 solution"
devenv %SOLUTION_PATH1% /rebuild Debug
else
echo "Starting Release Build for Custome solution"
devenv %SOLUTION_PATH% /rebuild Release
echo "Starting Release Build for Customer1 solution"
devenv %SOLUTION_PATH1% /rebuild Release
echo "Build is completed"