System.Configuration.ConfigurationManager 8.0.0-preview.3.23174.8

Prefix Reserved
This is a prerelease version of System.Configuration.ConfigurationManager.
There is a newer version of this package available.
See the version list below for details.
dotnet add package System.Configuration.ConfigurationManager --version 8.0.0-preview.3.23174.8                
NuGet\Install-Package System.Configuration.ConfigurationManager -Version 8.0.0-preview.3.23174.8                
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="8.0.0-preview.3.23174.8" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add System.Configuration.ConfigurationManager --version 8.0.0-preview.3.23174.8                
#r "nuget: System.Configuration.ConfigurationManager, 8.0.0-preview.3.23174.8"                
#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=8.0.0-preview.3.23174.8&prerelease

// Install System.Configuration.ConfigurationManager as a Cake Tool
#tool nuget:?package=System.Configuration.ConfigurationManager&version=8.0.0-preview.3.23174.8&prerelease                

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.

For more information, see the documentation:

Example

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>
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  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 is compatible.  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. 
.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.3K)

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.

FluentAssertions

A very extensive set of extension methods that allow you to more naturally specify the expected outcome of a TDD or BDD-style unit tests. Works with .NET Standard 2.0 and higher, .NET Framework 4.7 and higher and .NET 6 and higher. Supports the unit test frameworks MSTest2, NUnit3, NUnit4, XUnit2, MSpec and TUnit. Supported by InfoSupport B.V.

EntityFramework

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

GitHub repositories (276)

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.
aspnetboilerplate/aspnetboilerplate
ASP.NET Boilerplate - Web Application Framework
Sonarr/Sonarr
Smart PVR for newsgroup and bittorrent users.
Version Downloads Last updated
9.0.0 80,165 11/12/2024
9.0.0-rc.2.24473.5 45,996 10/8/2024
9.0.0-rc.1.24431.7 22,527 9/10/2024
9.0.0-preview.7.24405.7 20,285 8/13/2024
9.0.0-preview.6.24327.7 26,381 7/9/2024
9.0.0-preview.5.24306.7 14,887 6/11/2024
9.0.0-preview.4.24266.19 13,973 5/21/2024
9.0.0-preview.3.24172.9 25,663 4/11/2024
9.0.0-preview.2.24128.5 24,652 3/12/2024
9.0.0-preview.1.24080.9 31,823 2/13/2024
8.0.1 2,915,922 10/8/2024
8.0.0 60,748,708 11/14/2023
8.0.0-rc.2.23479.6 216,670 10/10/2023
8.0.0-rc.1.23419.4 132,505 9/12/2023
8.0.0-preview.7.23375.6 54,592 8/8/2023
8.0.0-preview.6.23329.7 30,519 7/11/2023
8.0.0-preview.5.23280.8 31,799 6/13/2023
8.0.0-preview.4.23259.5 72,729 5/16/2023
8.0.0-preview.3.23174.8 71,375 4/11/2023
8.0.0-preview.2.23128.3 41,257 3/14/2023
8.0.0-preview.1.23110.8 50,665 2/21/2023
7.0.0 59,999,873 11/7/2022
7.0.0-rc.2.22472.3 154,590 10/11/2022
7.0.0-rc.1.22426.10 136,955 9/14/2022
7.0.0-preview.7.22375.6 38,374 8/9/2022
7.0.0-preview.6.22324.4 38,364 7/12/2022
7.0.0-preview.5.22301.12 43,837 6/14/2022
7.0.0-preview.4.22229.4 29,829 5/10/2022
7.0.0-preview.3.22175.4 13,345 4/13/2022
7.0.0-preview.2.22152.2 29,574 3/14/2022
7.0.0-preview.1.22076.8 24,593 2/17/2022
6.0.2 3,360 11/12/2024
6.0.1 141,020,230 9/13/2022
6.0.0 227,113,127 11/8/2021
6.0.0-rc.2.21480.5 56,818 10/12/2021
6.0.0-rc.1.21451.13 65,682 9/14/2021
6.0.0-preview.7.21377.19 64,711 8/10/2021
6.0.0-preview.6.21352.12 56,963 7/14/2021
6.0.0-preview.5.21301.5 47,935 6/15/2021
6.0.0-preview.4.21253.7 57,548 5/24/2021
6.0.0-preview.3.21201.4 200,762 4/8/2021
6.0.0-preview.2.21154.6 68,054 3/11/2021
6.0.0-preview.1.21102.12 145,266 2/12/2021
5.0.0 301,195,595 11/9/2020 5.0.0 is deprecated because it is no longer maintained.
5.0.0-rc.2.20475.5 85,585 10/13/2020
5.0.0-rc.1.20451.14 63,303 9/14/2020
5.0.0-preview.8.20407.11 162,477 8/25/2020
5.0.0-preview.7.20364.11 126,600 7/21/2020
5.0.0-preview.6.20305.6 38,664 6/25/2020
5.0.0-preview.5.20278.1 37,671 6/10/2020
5.0.0-preview.4.20251.6 79,164 5/18/2020
5.0.0-preview.3.20214.6 61,402 4/23/2020
5.0.0-preview.2.20160.6 65,574 4/2/2020
5.0.0-preview.1.20120.5 57,458 3/16/2020
4.7.0 485,635,186 12/3/2019
4.7.0-preview3.19551.4 67,620 11/13/2019
4.7.0-preview2.19523.17 25,580 11/1/2019
4.7.0-preview1.19504.10 34,105 10/15/2019
4.6.0 52,932,190 9/23/2019
4.6.0-rc1.19456.4 67,514 9/16/2019
4.6.0-preview9.19421.4 26,666 9/4/2019
4.6.0-preview9.19416.11 941 9/4/2019
4.6.0-preview8.19405.3 100,212 8/13/2019
4.6.0-preview7.19362.9 222,490 7/23/2019
4.6.0-preview6.19303.8 1,058,100 6/12/2019
4.6.0-preview6.19264.9 985 9/4/2019
4.6.0-preview5.19224.8 63,343 5/6/2019
4.6.0-preview4.19212.13 14,249 4/18/2019
4.6.0-preview3.19128.7 79,294 3/6/2019
4.6.0-preview.19073.11 60,759 1/29/2019
4.6.0-preview.18571.3 133,066 12/3/2018
4.5.0 436,997,060 5/29/2018
4.5.0-rc1 217,296 5/6/2018
4.5.0-preview2-26406-04 471,464 4/10/2018
4.5.0-preview1-26216-02 458,860 2/26/2018
4.5.0-preview1-25914-04 663,857 11/15/2017
4.4.1 120,906,317 12/12/2017
4.4.0 308,261,470 8/11/2017
4.4.0-preview2-25405-01 95,603 6/27/2017
4.4.0-preview1-25305-02 8,090 5/9/2017