I have a VSTO Excel addin, which works properly. Only facing some issues regarding deployment. The addin is deployed (native publish option in VS2019) on an SMB-Share. Both the installation path and the publish path is the path to the certain SMB-Share.
From this share everybody can install the addin via double click the .vsto-file. However, in the Application Files folder I connot find the config-file.
The bin/release folder on my machine, after building the application, looks like this:
| app.config
| itextsharp.dll
| itextsharp.xml
| Microsoft.Office.Tools.Common.v4.0.Utilities.dll
| Newtonsoft.Json.dll
| Newtonsoft.Json.xml
| MyAppName.dll
| MyAppName.dll.config
| MyAppName.dll.manifest
| MyAppName.pdb
| MyAppName.vsto
|
\---Properties
Settings.Designer.cs
Settings.settings
In the MyAppName.dll.config there are some global configs, which applies to all users using this addin. I want to be able, to change this config after deployment.
However, if I deploy it to the SMB share, it looks like this:
itextsharp.dll.deploy
Microsoft.Office.Tools.Common.v4.0.Utilities.dll.deploy
Newtonsoft.Json.dll.deploy
MyAppName.dll.config.deploy
MyAppName.dll.deploy
MyAppName.dll.manifest
MyAppName.vsto
How can I change the configuration for every client?
BR Jonas