@echo off echo Installing RhinoMCP Plugin... set RHINO_PLUGINS=%APPDATA%\McNeel\Rhinoceros\9.0\Plug-ins\RhinoMCP (1.0.0) set SOURCE_DIR=%~dp0src\rhino-plugin\RhinoMCP\bin\Release\net7.0-windows if not exist "%RHINO_PLUGINS%" ( mkdir "%RHINO_PLUGINS%" ) echo Copying files to: %RHINO_PLUGINS% xcopy /Y /E "%SOURCE_DIR%\*" "%RHINO_PLUGINS%\" echo. echo Installation complete! echo. echo The plugin will load automatically when Rhino 9 starts. echo If Rhino is running, restart it or run: _PlugInManager to load RhinoMCP.dll echo. pause