Skip to content

Instantly share code, notes, and snippets.

@lynx44
Created May 26, 2020 23:58
Show Gist options
  • Save lynx44/3765d6afea62f1c9e241787558174c88 to your computer and use it in GitHub Desktop.
Save lynx44/3765d6afea62f1c9e241787558174c88 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8" ?>
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
<connectionStrings xdt:Transform="Replace">
<add name="JobBoardDbConnection" connectionString="Server=tcp:xxx.database.windows.net,1433;Database=xxx;User ID=xxx@xxx;Password=xxx;Encrypt=True;TrustServerCertificate=False;Connection Timeout=300;" providerName="System.Data.SqlClient" />
</connectionStrings>
<appSettings>
<add key="Environment" value="production" xdt:Transform="Replace" xdt:Locator="Match(key)" />
<add key="ResumeCache" value="D:\xxx\xxx\xxx\xxx\xxx\" xdt:Transform="Replace" xdt:Locator="Match(key)" />
<add key="ResumeFiles" value="D:\xxx\xxx\xxx\xxx\xxx\" xdt:Transform="Replace" xdt:Locator="Match(key)" />
<add key="IndeedXmlFileLocation" value="D:\xxx\xxx\xxx\xxx\xxx\xxx" xdt:Transform="Replace" xdt:Locator="Match(key)" />
<add key="SnagAJobXmlFileLocation" value="D:\xx\xxx\xxx\xxx\xxx\xxx" xdt:Transform="Replace" xdt:Locator="Match(key)" />
<add key="ZipRecruiterXmlFileLocation" value="D:\xxx\xxxx\xxx\xxx\xxx\xxx" xdt:Transform="Replace" xdt:Locator="Match(key)" />
<add key="IndustryXmlFileLocation" value="D:\xxx\xxx\xxx\xxx\xxx\xxx" xdt:Transform="Replace" xdt:Locator="Match(key)" />
<add key="ArenaIOApiUrl" value="https://xxxx.com/xxx-xxx" xdt:Transform="Replace" xdt:Locator="Match(key)" />
<add key="ArenaIOApiUserName" value="xxxx" xdt:Transform="Replace" xdt:Locator="Match(key)" />
<add key="ArenaIOApiPassword" value="xxxx" xdt:Transform="Replace" xdt:Locator="Match(key)" />
<add key="ArenaSecurityKey" value="xxxx" xdt:Transform="Replace" xdt:Locator="Match(key)" />
<add key="JobFeedDirectory" value="D:\xxx\xxxx\xxxx\xxxx\xxxx" xdt:Transform="Replace" xdt:Locator="Match(key)" />
<add key="IndeedApplyApiToken" value="xxxx" xdt:Transform="Replace" xdt:Locator="Match(key)" />
<add key="IndeedApplySecretKey" value="xxxx" xdt:Transform="Replace" xdt:Locator="Match(key)" />
<add key="IndeedApplyPostUrl" value="https://xxxx" xdt:Transform="Replace" xdt:Locator="Match(key)" />
</appSettings>
<system.net>
<mailSettings>
<smtp from="xxx@xxx.com" xdt:Transform="Replace">
<network host="smtp.xxxx.net"
port="587"
userName="xxxx"
password="xxxxxxxx"
enableSsl="true"/>
</smtp>
</mailSettings>
</system.net>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<targets xdt:Transform="Replace">
<target name="LogFile" xsi:type="File" fileName="D:\xxx\xxx\xxx\xxx\xxx\xxx.txt" layout="${longdate} | ${level:uppercase=true} | Message: ${message}" />
</targets>
</nlog>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment