Hi All,
I was looking through the Pro sdk documentation to find an option/solution to register a new add-in folder, but I could not find any.
Is there any way to do it using Pro SDK? I understand that shared add-in folders can be set via registry settings, but we are trying to move away from touching the registry for configuration purposes.
Thanks in advance
Tamas
Solved! Go to Solution.
<Configuration checkForUpdatesAtStartup="true">
<ConfigurationManager className="ConfigurationManager1"/>
<AddIns securityLevel="0">
<AdditionalWellKnownFolder>\\networkfolder/blabla</AdditionalWellKnownFolder>
</AddIns>
</Configuration>
Answering my own question - looks like this can be set from the DAML of a configuration add-in.
<Configuration checkForUpdatesAtStartup="true">
<ConfigurationManager className="ConfigurationManager1"/>
<AddIns securityLevel="0">
<AdditionalWellKnownFolder>\\networkfolder/blabla</AdditionalWellKnownFolder>
</AddIns>
</Configuration>
Replying just to keep my ex-corporate account's forum post to link to my private forum account.