如何仅在安装后显示 Outlook 插件
我在 Windows XP/SP 3 上的 Visual Studio 2010 中使用 VSTO 开发了 Outlook 插件。
- 构建 VSTO 解决方案,然后打开 Outlook 2010。
- 我看到插件已安装。 (这很奇怪)。
- 关闭 Outlook。
- 清理VSTO解决方案5)打开Outlook 2010,加载项不存在 那里。
因此,我相信 Outlook 知道 Outlook 插件的存在,但我不希望出现上述行为。
我在寻找什么:-
我已经使用 ClickOnce 创建了安装程序。
执行安装程序后,我应该只能看到 Outlook 插件。
任何想法都会有所帮助。
I have developed a Outlook Addin using VSTO in Visual Studio 2010, on Windows XP/SP 3.
- Build the VSTO solution, and I open Outlook 2010.
- I see that the Add in has been installed. ( which is strange ).
- Shut down Outlook.
- Clean the VSTO solution 5) Open Outlook 2010, the add in is not
there.
So I believe Outlook understands that an Outlook add in is there, but I dont want the mentioned behaviour.
What am I looking for :-
I have created the installer using ClickOnce .
I should only see the Outlook addin , once I have executed the installer.
Any ideas shall be helpful.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您构建 VSTO 插件时,它会自动安装在您的开发计算机上。 Visual Studio 正在为您做这件事,使调试变得更容易。
您可能可以通过使用构建后事件自动卸载您的插件,但“清理项目”可能同样简单。
When you build a VSTO addin, it gets automatically installed on your development machine. It is Visual Studio that is doing this for you, to make debugging easyer.
You can probably uninstall your addin automatically by using post-build events, but "Clean project" may be just as easy.