Skip to content

Instantly share code, notes, and snippets.

@wajatimur
Created January 20, 2017 02:54
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 wajatimur/92531ef435036d77144bc5ae69ee0d89 to your computer and use it in GitHub Desktop.
Save wajatimur/92531ef435036d77144bc5ae69ee0d89 to your computer and use it in GitHub Desktop.
C# Using External Config File
<?xml version='1.0' encoding='utf-8'?>
<configuration>
<connectionStrings configSource="connections.config"/>
</configuration>
<connectionStrings>
<add name="Name"
providerName="System.Data.ProviderName"
connectionString="Valid Connection String;" />
</connectionStrings>
@wajatimur
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment