【发布时间】:2016-12-19 06:43:23
【问题描述】:
正如MSDN tutorial 中所述,当您在 Visual Studio 中运行/构建 MS Word VSTO 项目时,它会在 Word 应用程序中创建您的自定义 Office Word AddIn。您可以稍后使用 VS 删除该插件,如下所示:
清理项目(引自上述 MSDN 教程的最后一节)
When you finish developing a project, remove the VSTO Add-in assembly, registry entries, and security settings from your development computer. Otherwise, the VSTO Add-in will continue to run every time that you open Word on your development computer.
To clean up the completed project on your development computer
In Visual Studio, on the Build menu, click Clean Solution.
我的问题:创建自定义插件时(如上述 MSDN 教程中所述)相应的 dll 以及来自插件项目的其他相关文件(数据文件等)部署在哪里?
【问题讨论】: