Advertisement
Guest User

app.config

a guest
May 22nd, 2019
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MXML 1.17 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <configuration>
  3.   <connectionStrings>
  4.     <!-- The format of the connection string is "DefaultEndpointsProtocol=https;AccountName=NAME;AccountKey=KEY" -->
  5.     <!-- For local execution, the value can be set either in this config file or through environment variables -->
  6.     <add name="AzureWebJobsDashboard" connectionString="" />
  7.     <add name="AzureWebJobsStorage" connectionString="" />
  8.   </connectionStrings>
  9.     <startup>
  10.       <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.2" />
  11.     </startup>
  12.   <runtime>
  13.     <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  14.       <dependentAssembly>
  15.         <assemblyIdentity name="Microsoft.WindowsAzure.Storage" publicKeyToken="31bf3856ad364e35" culture="neutral" />
  16.         <bindingRedirect oldVersion="0.0.0.0-7.0.0.0" newVersion="7.0.0.0" />
  17.       </dependentAssembly>
  18.       <dependentAssembly>
  19.         <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
  20.         <bindingRedirect oldVersion="0.0.0.0-11.0.0.0" newVersion="11.0.0.0" />
  21.       </dependentAssembly>
  22.     </assemblyBinding>
  23.   </runtime>
  24. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement