ChrisMavrommatis.Features 1.0.0

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

// Install ChrisMavrommatis.Features as a Cake Tool
#tool nuget:?package=ChrisMavrommatis.Features&version=1.0.0                

Features

ChrisMavrommatis.Features is a .NET library that provides a flexible and extensible solution for managing features in a software application. It allows you to enable or disable specific features based on various conditions, such as configuration settings or environment variables.

Installation

Install the package via NuGet Package Manager

Install-Package ChrisMavrommatis.Features

Or via .NET CLI:

dotnet add package ChrisMavrommatis.Features

Usage

In your startup class configure the static Feature.Manager instance using the following code:

Feature.Manager = new FeatureManagerConfiguration()
			.ReadFrom.EnvironmentVariables()
			.ReadFrom.Configuration(builder.Configuration)
			.CreateManager();

Be sure to have loaded the configuration from a file or other source beforehand

builder.Configuration
	.AddJsonFile("Features.json", optional: false, reloadOnChange: true)
	.AddJsonFile($"Features.{builder.Environment.EnvironmentName}.json", optional: true, reloadOnChange: true);

The json should look like this

{
  "Features": {
    "Feature1": true
    "Feature2": false
  }
}

Then you can call the method IsEnabled on the static Feature

if (Feature.IsEnabled("Feature1"))
{
	// Do something
}

License

This project is licensed under the MIT License. See the LICENSE file for details.

Product Compatible and additional computed target framework versions.
.NET 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.0 88 7/24/2024