- PathFinding 폴더를 Core, Validation, Planning, Analysis로 세분화 - 네임스페이스 정리 및 using 문 업데이트 - UnifiedAGVCanvas에 SetDockingError 메서드 추가 - 도킹 검증 시스템 인프라 구축 - DockingValidator 유틸리티 클래스 추가 - 빌드 오류 수정 및 안정성 개선 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
18 lines
664 B
Batchfile
18 lines
664 B
Batchfile
@echo off
|
|
echo Building AGV C# HMI Project...
|
|
|
|
REM Check if Visual Studio 2022 is installed
|
|
if not exist "C:\Program Files\Microsoft Visual Studio\2022\Professional\MSBuild\Current\Bin\MSBuild.exe" (
|
|
echo Visual Studio 2022 Professional not found!
|
|
echo Please install Visual Studio 2022 Professional or update the MSBuild path.
|
|
pause
|
|
exit /b 1
|
|
)
|
|
|
|
REM Set MSBuild path
|
|
set MSBUILD="C:\Program Files\Microsoft Visual Studio\2022\Professional\MSBuild\Current\Bin\MSBuild.exe"
|
|
|
|
REM Rebuild Debug x86 configuration (VS-style Rebuild)
|
|
%MSBUILD% AGVCSharp.sln -property:Configuration=Debug -property:Platform=x86 -verbosity:quiet -nologo -t:Rebuild
|
|
|
|
pause |