NavisworksTransport/test-simple-plugin.bat

21 lines
841 B
Batchfile
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@echo off
echo 正在复制纯净WPF测试插件到Navisworks插件目录...
if not exist "C:\Program Files\Autodesk\Navisworks Manage 2026\Plugins\SimpleTestPlugin" (
mkdir "C:\Program Files\Autodesk\Navisworks Manage 2026\Plugins\SimpleTestPlugin"
)
echo 复制纯净WPF插件DLL...
copy "bin\Debug\SimpleTestPlugin.dll" "C:\Program Files\Autodesk\Navisworks Manage 2026\Plugins\SimpleTestPlugin\"
copy "bin\Debug\SimpleTestPlugin.pdb" "C:\Program Files\Autodesk\Navisworks Manage 2026\Plugins\SimpleTestPlugin\"
echo 文件复制完成!
echo.
echo 已复制纯净WPF测试插件 (按照官方例子构建)
echo - 插件名称: SimpleWPFTestPlugin
echo - 文件大小: 5KB (最小化版本)
echo - 架构: 双文件结构,完全按照官方例子
echo.
echo 请启动Navisworks Manage 2026测试这个纯净版本
echo.
pause