Skip to content

Instantly share code, notes, and snippets.

@kdhollow
Created February 24, 2016 07:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kdhollow/88c4372297a02a7f1eb5 to your computer and use it in GitHub Desktop.
Save kdhollow/88c4372297a02a7f1eb5 to your computer and use it in GitHub Desktop.
app.config containing Azure Search parameters
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="SearchServiceName" value="<YOUR SEARCH SERVICE NAME HERE>" />
<add key="SearchServiceApiKey" value="<YOUR KEY HERE>" />
<add key="SearchServiceIndexName" value="airports" />
<add key="SearchServiceSuggesterName" value="suggester" />
</appSettings>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment