System.Configuration.ConfigurationManager 9.0.0

Prefix Reserved
dotnet add package System.Configuration.ConfigurationManager --version 9.0.0                
NuGet\Install-Package System.Configuration.ConfigurationManager -Version 9.0.0                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="System.Configuration.ConfigurationManager" Version="9.0.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add System.Configuration.ConfigurationManager --version 9.0.0                
#r "nuget: System.Configuration.ConfigurationManager, 9.0.0"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install System.Configuration.ConfigurationManager as a Cake Addin
#addin nuget:?package=System.Configuration.ConfigurationManager&version=9.0.0

// Install System.Configuration.ConfigurationManager as a Cake Tool
#tool nuget:?package=System.Configuration.ConfigurationManager&version=9.0.0                

About

Provides types that support using XML configuration files (app.config). This package exists only to support migrating existing .NET Framework code that already uses System.Configuration. When writing new code, use another configuration system instead, such as Microsoft.Extensions.Configuration.

How to Use

The following example shows how to read and modify the application configuration settings.

using System;
using System.Configuration;

class Program
{
    static void Main()
    {
        try
        {
            // Open current application configuration
            Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
            KeyValueConfigurationCollection section = config.AppSettings.Settings;

            // Print settings from configuration file
            foreach (string key in section.AllKeys)
            {
                Console.WriteLine($"{key}: {section[key].Value}");
            }

            // Add new setting
            section.Add("Database", "TestDatabase");

            // Change existing setting
            section["Username"].Value = "TestUser";

            // Save changes to file
            config.Save(ConfigurationSaveMode.Modified);
            ConfigurationManager.RefreshSection(config.AppSettings.SectionInformation.Name);
        }
        catch (ConfigurationErrorsException ex)
        {
            Console.WriteLine("Error reading configuration: ");
            Console.WriteLine(ex.Message);
        }
    }
}

To run this example, include an app.config file with the following content in your project:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <appSettings>
    <add key="Server" value="example.com"/>
    <add key="Username" value="Admin"/>
  </appSettings>
</configuration>

Main Types

The main types provided by this library are:

  • System.Configuration.Configuration
  • System.Configuration.ConfigurationManager

Additional Documentation

Feedback & Contributing

System.Configuration.ConfigurationManager is released as open source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2.4K)

Showing the top 5 NuGet packages that depend on System.Configuration.ConfigurationManager:

Package Downloads
System.Runtime.Caching

Provides classes to use caching facilities. Commonly Used Types: System.Runtime.Caching.CacheEntryChangeMonitor System.Runtime.Caching.CacheEntryRemovedArguments System.Runtime.Caching.CacheEntryUpdateArguments System.Runtime.Caching.CacheItem System.Runtime.Caching.CacheItemPolicy System.Runtime.Caching.ChangeMonitor System.Runtime.Caching.FileChangeMonitor System.Runtime.Caching.HostFileChangeMonitor System.Runtime.Caching.MemoryCache System.Runtime.Caching.ObjectCache

System.Diagnostics.PerformanceCounter

Provides the System.Diagnostics.PerformanceCounter class, which allows access to Windows performance counters. Commonly Used Types: System.Diagnostics.PerformanceCounter

Microsoft.Data.SqlClient

The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS). Commonly Used Types: Microsoft.Data.SqlClient.SqlConnection Microsoft.Data.SqlClient.SqlException Microsoft.Data.SqlClient.SqlParameter Microsoft.Data.SqlClient.SqlDataReader Microsoft.Data.SqlClient.SqlCommand Microsoft.Data.SqlClient.SqlTransaction Microsoft.Data.SqlClient.SqlParameterCollection Microsoft.Data.SqlClient.SqlClientFactory When using NuGet 3.x this package requires at least version 3.4.

EntityFramework

Entity Framework 6 (EF6) is a tried and tested object-relational mapper for .NET with many years of feature development and stabilization.

log4net

log4net is a tool to help the programmer output log statements to a variety of output targets. In case of problems with an application, it is helpful to enable logging so that the problem can be located. With log4net it is possible to enable logging at runtime without modifying the application binary. The log4net package is designed so that log statements can remain in shipped code without incurring a high performance cost. It follows that the speed of logging (or rather not logging) is crucial. At the same time, log output can be so voluminous that it quickly becomes overwhelming. One of the distinctive features of log4net is the notion of hierarchical loggers. Using these loggers it is possible to selectively control which log statements are output at arbitrary granularity. log4net is designed with two distinct goals in mind: speed and flexibility

GitHub repositories (274)

Showing the top 5 popular GitHub repositories that depend on System.Configuration.ConfigurationManager:

Repository Stars
microsoft/PowerToys
Windows system utilities to maximize productivity
PowerShell/PowerShell
PowerShell for every system!
dotnet/roslyn
The Roslyn .NET compiler provides C# and Visual Basic languages with rich code analysis APIs.
jasontaylordev/CleanArchitecture
Clean Architecture Solution Template for ASP.NET Core
aspnetboilerplate/aspnetboilerplate
ASP.NET Boilerplate - Web Application Framework
Version Downloads Last updated
9.0.0 1,550,956 11/12/2024
9.0.0-rc.2.24473.5 61,241 10/8/2024
9.0.0-rc.1.24431.7 27,078 9/10/2024
9.0.0-preview.7.24405.7 25,002 8/13/2024
9.0.0-preview.6.24327.7 29,220 7/9/2024
9.0.0-preview.5.24306.7 17,308 6/11/2024
9.0.0-preview.4.24266.19 15,586 5/21/2024
9.0.0-preview.3.24172.9 27,705 4/11/2024
9.0.0-preview.2.24128.5 27,534 3/12/2024
9.0.0-preview.1.24080.9 38,552 2/13/2024
8.0.1 6,794,952 10/8/2024
8.0.0 75,975,627 11/14/2023
8.0.0-rc.2.23479.6 228,599 10/10/2023
8.0.0-rc.1.23419.4 134,871 9/12/2023
8.0.0-preview.7.23375.6 57,681 8/8/2023
8.0.0-preview.6.23329.7 33,038 7/11/2023
8.0.0-preview.5.23280.8 34,521 6/13/2023
8.0.0-preview.4.23259.5 76,199 5/16/2023
8.0.0-preview.3.23174.8 72,701 4/11/2023
8.0.0-preview.2.23128.3 42,230 3/14/2023
8.0.0-preview.1.23110.8 54,248 2/21/2023
7.0.0 64,725,031 11/7/2022
7.0.0-rc.2.22472.3 158,155 10/11/2022
7.0.0-rc.1.22426.10 138,615 9/14/2022
7.0.0-preview.7.22375.6 39,241 8/9/2022
7.0.0-preview.6.22324.4 39,214 7/12/2022
7.0.0-preview.5.22301.12 44,523 6/14/2022
7.0.0-preview.4.22229.4 30,175 5/10/2022
7.0.0-preview.3.22175.4 13,555 4/13/2022
7.0.0-preview.2.22152.2 30,143 3/14/2022
7.0.0-preview.1.22076.8 24,836 2/17/2022
6.0.2 44,673 11/12/2024
6.0.1 157,872,551 9/13/2022
6.0.0 247,893,545 11/8/2021
6.0.0-rc.2.21480.5 57,581 10/12/2021
6.0.0-rc.1.21451.13 66,473 9/14/2021
6.0.0-preview.7.21377.19 66,218 8/10/2021
6.0.0-preview.6.21352.12 58,238 7/14/2021
6.0.0-preview.5.21301.5 48,153 6/15/2021
6.0.0-preview.4.21253.7 58,141 5/24/2021
6.0.0-preview.3.21201.4 212,046 4/8/2021
6.0.0-preview.2.21154.6 68,517 3/11/2021
6.0.0-preview.1.21102.12 147,239 2/12/2021
5.0.0 309,552,644 11/9/2020 5.0.0 is deprecated because it is no longer maintained.
5.0.0-rc.2.20475.5 88,221 10/13/2020
5.0.0-rc.1.20451.14 63,762 9/14/2020
5.0.0-preview.8.20407.11 163,794 8/25/2020
5.0.0-preview.7.20364.11 128,556 7/21/2020
5.0.0-preview.6.20305.6 38,944 6/25/2020
5.0.0-preview.5.20278.1 37,785 6/10/2020
5.0.0-preview.4.20251.6 79,438 5/18/2020
5.0.0-preview.3.20214.6 62,908 4/23/2020
5.0.0-preview.2.20160.6 66,588 4/2/2020
5.0.0-preview.1.20120.5 57,781 3/16/2020
4.7.0 497,882,951 12/3/2019
4.7.0-preview3.19551.4 69,826 11/13/2019
4.7.0-preview2.19523.17 25,913 11/1/2019
4.7.0-preview1.19504.10 34,649 10/15/2019
4.6.0 54,145,766 9/23/2019
4.6.0-rc1.19456.4 67,722 9/16/2019
4.6.0-preview9.19421.4 26,832 9/4/2019
4.6.0-preview9.19416.11 980 9/4/2019
4.6.0-preview8.19405.3 101,764 8/13/2019
4.6.0-preview7.19362.9 232,791 7/23/2019
4.6.0-preview6.19303.8 1,157,566 6/12/2019
4.6.0-preview6.19264.9 1,023 9/4/2019
4.6.0-preview5.19224.8 63,719 5/6/2019
4.6.0-preview4.19212.13 14,327 4/18/2019
4.6.0-preview3.19128.7 79,573 3/6/2019
4.6.0-preview.19073.11 61,266 1/29/2019
4.6.0-preview.18571.3 133,403 12/3/2018
4.5.0 450,724,597 5/29/2018
4.5.0-rc1 218,278 5/6/2018
4.5.0-preview2-26406-04 478,598 4/10/2018
4.5.0-preview1-26216-02 476,614 2/26/2018
4.5.0-preview1-25914-04 669,307 11/15/2017
4.4.1 124,617,876 12/12/2017
4.4.0 321,642,500 8/11/2017
4.4.0-preview2-25405-01 110,680 6/27/2017
4.4.0-preview1-25305-02 8,249 5/9/2017