I've created a ribbon button in .NET using VSTO and published it using One Click, however I'm curious as to where the button image is stored on the computer. Furthermore, I'm wondering if I can update this image manually (or programmatically) without publishing a new version of the VSTO add-in.
Asked
Active
Viewed 78 times
1 Answers
0
I'm going to assume you know that unless your addin is designed for this scenario, what you want to do is far from the intended way to update the image.
You could try this link: How do I programmatically find the deployed files for a VSTO Add-In? but I just tried it for mine and no images are showing up (I do have some, in the project Resources).
But I suspect it's in .\Application Files\<< your_addin_name>>.dll.deploy, wherever you published it to. This is just the normal dll, with '.deploy' appended. I don't know much about opening DLLs, but this might help you.