echo off

rem Create a command line GENERATEVSCMD that looks like this:
rem .\ALBuildLogParser.exe --input=C:\ALGitRepos\ToolsALInternal\ALBuildLogParser\_test_files\BootManager.txt --output=C:\ALGitRepos\ToolsALInternal\ALBuildLogParser\_test_files\BootManager_out.txt

set Arg1=--input=C:\ALGitRepos\ToolsALInternal\ALBuildLogParser\_test_files\Application.txt
set Arg2=--output=C:\ALGitRepos\ToolsALInternal\ALBuildLogParser\_test_files\Application_out.txt
Set ToolPath=.\ALBuildLogParser.exe

 

echo.
echo +++ RunALBuildLogParser.bat: +++
echo.

set GENERATEVSCMD=%ToolPath% %Arg1% %Arg2%

echo GENERATEVSCMD %GENERATEVSCMD%

%GENERATEVSCMD%
