From 6d9a93234e9f36f458d8d48128a95f0eb5ed4fac Mon Sep 17 00:00:00 2001 From: Justin Lettau Date: Wed, 16 Jan 2019 17:18:33 -0500 Subject: [PATCH] chore: update web.config readme details --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 41bd37b..3b95198 100644 --- a/README.md +++ b/README.md @@ -220,7 +220,7 @@ Basic connections. } ``` -Connections stored in `Web.config` file. +Connections stored in `Web.config` file. The `Web.config` should be an XML [.NET config file](https://docs.microsoft.com/en-us/dotnet/framework/data/adonet/connection-strings-and-configuration-files). ```json { @@ -228,6 +228,16 @@ Connections stored in `Web.config` file. } ``` +Connection strings can follow any of the following formats: + +```xml + + + + + +``` + Connections stored in separate JSON file. Storing connections in a separate JSON can be used in conjunction with a `.gitignore` entry to prevent user connections or sensitive data from being committed.