Skip to content

Commit

Permalink
fixing some broken links in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
aloneguid committed Jul 26, 2022
1 parent a7f3732 commit 23f8590
Showing 1 changed file with 11 additions and 14 deletions.
25 changes: 11 additions & 14 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,20 @@ This library eliminates the problem of having configuration in different places,
## Index

- Configuration Sources
- [App.config](doc/Stores_AppConfig.md)
- [Command Line](doc/Stores_CommandLine.md)
- [Environment Variables](doc/Stores_EnvironmentVariables.md)
- [.INI files](doc/Stores_IniFile.md)
- [In-Memory](doc/Stores_InMemory.md)
- [JSON Files](doc/Stores_JsonFile.md)
- [Nested Interfaces](doc/NestedInterfaces.md)
- [Collections](doc/Collections.md)
- [Binding to Interface Methods](doc/DynamicConfiguration.md)
- [INotifyPropertyChanged](doc/INotifyPropertyChanged.md)
- Extending Config.Net
- [Implementing a custom parser](doc/CustomParsers.md)
- [Implementing a custom configuration store](doc/Stores_Custom.md)
- [App.config](Stores_AppConfig.md)
- [Command Line](Stores_CommandLine.md)
- [Environment Variables](Stores_EnvironmentVariables.md)
- [.INI files](Stores_IniFile.md)
- [In-Memory](Stores_InMemory.md)
- [JSON Files](Stores_JsonFile.md)
- [Nested Interfaces](NestedInterfaces.md)
- [Collections](Collections.md)
- [Binding to Interface Methods](DynamicConfiguration.md)
- [INotifyPropertyChanged](INotifyPropertyChanged.md)

## Quick Start

Usually developers will hardcode reading cofiguration values from different sources like app.config, local json file etc. For instance, consider this code example:
Usually developers will hardcode reading configuration values from different sources like app.config, local json file etc. For instance, consider this code example:

```csharp
var clientId = ConfigurationManager.AppSettings["AuthClientId"];
Expand Down

0 comments on commit 23f8590

Please sign in to comment.