Sometimes we use global variables in our BTSNTSvc.exe.config configuration ( BTSNTSvc.exe.config ), we add them with the following code:
<appSettings> <add key="IPSdatum" value="20090101" /> </appSettings>
Using the following C # code, we can read the value:
ConfigurationManager.AppSettings["IPSdatum"]
Now, when we add a web link to our biztalk projects, we use them through the ports, however, my colleague used the code in the web interface and added one to the aC # class project, so this means that app.config , where the address is . However, when deploying our project, of course, there is no app.config . Only BTSNTSvc.exe.config . I heard that there is a way to add a key value to this configuration, which can reference the value of app.config .
Can someone help me here?
source share