file 정리

This commit is contained in:
ChiKyun Kim
2025-09-10 17:36:20 +09:00
parent 5a7b57f90c
commit 04d7c23c8f
49 changed files with 153 additions and 3131 deletions

View File

@@ -12,36 +12,8 @@ if not exist "C:\Program Files\Microsoft Visual Studio\2022\Professional\MSBuild
REM Set MSBuild path
set MSBUILD="C:\Program Files\Microsoft Visual Studio\2022\Professional\MSBuild\Current\Bin\MSBuild.exe"
REM Clean previous builds
echo Cleaning previous builds...
%MSBUILD% V2GDecoderC.sln -target:Clean -property:Configuration=Debug -property:Platform=x64 -verbosity:minimal
REM Build Debug x64 configuration
echo Building Debug x64 configuration...
%MSBUILD% V2GDecoderC.sln -property:Configuration=Debug -property:Platform=x64 -verbosity:normal
if %ERRORLEVEL% EQU 0 (
echo Build successful!
echo Output directory: bin\x64\Debug\
dir bin\x64\Debug\*.exe /b
) else (
echo Build failed with error code %ERRORLEVEL%
echo Please check the source file paths and project configuration.
)
REM Test the built executable if successful
if %ERRORLEVEL% EQU 0 (
echo.
echo Testing the built V2GDecoder.exe...
if exist bin\x64\Debug\V2GDecoder.exe (
echo Running test with test4.exi...
bin\x64\Debug\V2GDecoder.exe ..\..\test4.exi
echo.
echo Running test with test5.exi...
bin\x64\Debug\V2GDecoder.exe ..\..\test5.exi
) else (
echo V2GDecoder.exe not found in output directory
)
)
pause