I have an external web service that I am calling based on a SAVE event on PMTrxEntry window in GP. After comiling the code, I see appconfig file with as following:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="DynamicsGPValidation.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</sectionGroup>
</configSections>
<applicationSettings>
<DynamicsGPValidation.Properties.Settings>
<setting name="DynamicsGPValidation_edmswebdev_APOnBaseServices"
serializeAs="String">
<value>http://edmswebdev/onbasewebservices/APOnBaseServices.asmx</value>
</setting>
</DynamicsGPValidation.Properties.Settings>
</applicationSettings>
</configuration>
My quesiton is wether or not I should leave this config file part of the GP\AddIn folder? or merge this into the Dynamics.config file under the GP\ root folder?
Thanks