Extensions related to ConfiguraitonManager functionality
$ dotnet add package AgileCoding.Extentions.ConfigurationManagerAgileCoding.Extensions.ConfigurationManager is a .NET 6.0 library that provides useful extensions for the ConfigurationManager functionality.
This library is available as a NuGet package. You can install it using the NuGet package manager console:
bashCopy code
Install-Package AgileCoding.Extensions.ConfigurationManager
The library provides a functionality to obtain the configuration of a DLL. This can be beneficial in different scenarios where you need to access the configuration data for a specific DLL.
Here's an example of how to use this feature:
using AgileCoding.Extentions.ConfigurationManagers;
using System.Configuration;
string DLLName = "yourDLLName.dll";
// Get DLL Configuration
Configuration config = ConfigurationManagerExtentions.GetDLLConfiguration(DLLName);
// Now you can use the 'config' object for further operations...
For more detailed information about the usage of this library, please refer to the official documentation.
This project is licensed under the terms of the MIT license. For more information, see the LICENSE file.
Contributions are welcome! Please see our contributing guidelines for more details.