MyFramework.Core.Configuration 1.0.0.5

dotnet add package MyFramework.Core.Configuration --version 1.0.0.5
NuGet\Install-Package MyFramework.Core.Configuration -Version 1.0.0.5
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="MyFramework.Core.Configuration" Version="1.0.0.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MyFramework.Core.Configuration --version 1.0.0.5
#r "nuget: MyFramework.Core.Configuration, 1.0.0.5"
#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 MyFramework.Core.Configuration as a Cake Addin
#addin nuget:?package=MyFramework.Core.Configuration&version=1.0.0.5

// Install MyFramework.Core.Configuration as a Cake Tool
#tool nuget:?package=MyFramework.Core.Configuration&version=1.0.0.5

MyFramework.Core.Configuration

介绍

配置文件(appsettings.json、 Web.config)访问组件

软件架构

安装教程

Install-Package MyFramework.Core.Configuration

使用示例
1. 调用示例 appsettings.json
配置文件内容
{
	/*连接字符串*/
	"ConnectionStrings": {
        "default": {
			"ProviderName": "Oracle.ManagedDataAccess.Client",
			"ConnectionString": "User Id=TEST;Password=TEST;Data Source=(DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = LAPTOP-82NKIOQL)(PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = XE) ) )"
		}
	}
}
代码(两种写法)
	var connectionString = ConfigurationHelper.Configuration.GetConnectionString("default:ConnectionString");
	var providerName = ConfigurationHelper.Configuration["ConnectionStrings:default:ProviderName"];
2. 调用示例 Web.config
配置文件内容(针对自定义配置) 非自定义 无需引用该类 直接调用即可
<configuration>
	<configSections>
		
		<section name="ConnectionString" type="MyFramework.Core.Configuration.ConfigurationSectionHandler" />
		</configSections>
	<ConnectionString ProviderName="System.Data.SqlClient" ConnectionString="Server=.;Database=demo;Uid=sa;Pwd=123" />
</configuration>
代码
	var providerName = MyConfigurationManager.GetSection("ConnectionString").Attr["ProviderName"];
	var connectionString = MyConfigurationManager.GetSection("ConnectionString").Attr["ConnectionString"];
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 was computed.  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 is compatible.  netcoreapp3.0 was computed.  netcoreapp3.1 is compatible. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net35 is compatible.  net40 is compatible.  net403 was computed.  net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  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 (4)

Showing the top 4 NuGet packages that depend on MyFramework.Core.Configuration:

Package Downloads
MyFramework.Core.Data

数据库访问类库

MyFramework.Web.Api

web项目基础功能包

MyFramework.Core.DB

数据库访问类(包含简单的orm功能)

MyFramework.Core

核心包

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.0.5 891 6/8/2020
1.0.0.4 447 6/8/2020
1.0.0.3 1,162 11/20/2019
1.0.0.2 2,321 9/6/2019
1.0.0.1 1,214 8/14/2019