VSTO excel 加载项自动更新
VSTO excel AddIn auto update
我正在尝试构建自动更新 excel 使用单击一次部署添加。我卡在下面的错误
"The customization cannot be installed because another version is currently installed and cannot be upgraded from this location. To install this version of the customization, first use Add or Remove Programs to uninstall this program: M61AddIn. Then install the new customization from the following location: "
我累了好几件事
我不是要在我开发它的同一台机器上 install/update VSTO excel 加载项
更新模式设置为"Every time the customization runs"。
我该如何解决这个问题?
对于那些想要 know.how 我完成了吗 task.Below 事情对我有帮助
- 构建事件
在 visual studio 构建事件
中添加了下面一行
reg add HKEY_CURRENT_USER\Software\Microsoft\Office\Excel\Addins\M61AddInExcel /v Manifest /t REG_SZ /d <install url>to /f
添加了 visual studio 提供的自签名证书并在客户端计算机上安装了该证书
发布设置如下
我正在尝试构建自动更新 excel 使用单击一次部署添加。我卡在下面的错误
"The customization cannot be installed because another version is currently installed and cannot be upgraded from this location. To install this version of the customization, first use Add or Remove Programs to uninstall this program: M61AddIn. Then install the new customization from the following location: "
我累了好几件事
我不是要在我开发它的同一台机器上 install/update VSTO excel 加载项
更新模式设置为"Every time the customization runs"。
我该如何解决这个问题?
对于那些想要 know.how 我完成了吗 task.Below 事情对我有帮助
- 构建事件
在 visual studio 构建事件
中添加了下面一行reg add HKEY_CURRENT_USER\Software\Microsoft\Office\Excel\Addins\M61AddInExcel /v Manifest /t REG_SZ /d <install url>to /f
添加了 visual studio 提供的自签名证书并在客户端计算机上安装了该证书
发布设置如下