Toggly.FeatureManagement 2.7.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Toggly.FeatureManagement --version 2.7.0
NuGet\Install-Package Toggly.FeatureManagement -Version 2.7.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="Toggly.FeatureManagement" Version="2.7.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Toggly.FeatureManagement --version 2.7.0
#r "nuget: Toggly.FeatureManagement, 2.7.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 Toggly.FeatureManagement as a Cake Addin
#addin nuget:?package=Toggly.FeatureManagement&version=2.7.0

// Install Toggly.FeatureManagement as a Cake Tool
#tool nuget:?package=Toggly.FeatureManagement&version=2.7.0

ASP.NET Core Feature Flag Extensions for Hangfire

To simplify the use of Hangfire with feature flags, we created a set of extensions for ASP.NET Core. The extensions allow you to easily configure Hangfire to use feature flags to enable or disable background jobs.

Installation

dotnet add package Toggly.FeatureManagement.Hangfire

Before

var featureStateService = app.Services.GetRequiredService<IFeatureStateService>();
            
featureStateService.WhenFeatureTurnsOn(FeatureFlags.HourlyJob, () =>
{
    //start a service or job
    RecurringJob.AddOrUpdate<ITestRecurringJob>("Hourly job", s => s.RunAsync(), Cron.Hourly());
});

featureStateService.WhenFeatureTurnsOff(FeatureFlags.HourlyJob, () =>
{
    //stop a service or job
    RecurringJob.RemoveIfExists("Hourly job");
});

After

var featureStateService = app.Services.GetRequiredService<IFeatureStateService>();
featureStateService.AddOrUpdateJob<ITestRecurringJob>(FeatureFlags.HourlyJob.ToString(), "Hourly job", s => s.RunAsync(), Cron.Hourly());
Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  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 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 netcoreapp3.0 was computed.  netcoreapp3.1 is compatible. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen 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 Toggly.FeatureManagement:

Package Downloads
Toggly.FeatureManagement.Storage.RavenDB

Provides a RavenDB implementation for feature snapshot storage. The application falls back to snapshot storage if it can't reach toggly.io

Toggly.FeatureManagement.Web

Adds filters for Browser Family, Browser Language, Country, OS and User Claims and a default implementation for HTTP context targeting that support users and groups

Toggly.Metrics.SystemMetrics

Toggly.Metrics.SystemMetrics extends the Toggly feature management library by adding support for capturing performance metrics. Capture performance counters, giving you valuable insights into the performance of your application.

Toggly.FeatureManagement.Hangfire

Provides extensions to control hangfire jobs using feature flags via toggly.io

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.7.5 1,677 1/22/2024
2.7.4 1,131 11/27/2023
2.7.3 3,407 5/3/2023
2.7.2 1,903 3/3/2023
2.7.1 599 3/3/2023
2.7.0 622 3/3/2023
2.6.1 579 2/27/2023
2.6.0 948 2/13/2023
2.5.5 738 2/10/2023
2.5.4 1,032 2/5/2023
2.5.3 612 2/5/2023
2.5.2 721 1/31/2023
2.5.1 630 1/30/2023
2.5.0 626 1/30/2023
2.4.1 642 1/12/2023
2.4.0 650 1/9/2023
2.3.0 586 1/8/2023
2.2.11 620 1/4/2023
2.2.10 613 1/4/2023
2.2.9 593 1/4/2023
2.2.8 267 1/4/2023
2.2.7 274 1/4/2023
2.2.6 272 1/4/2023
2.2.5 644 1/4/2023
2.2.4 676 12/31/2022
2.2.3 1,026 12/29/2022
2.2.2 620 12/29/2022
2.2.1 628 12/29/2022
2.2.0 593 12/28/2022
2.1.19 588 11/29/2022
2.1.18 597 11/27/2022
2.1.17 509 11/27/2022
2.1.16 587 11/14/2022
2.1.15 2,502 8/19/2022
2.1.14 1,017 8/7/2022
2.1.13 784 8/7/2022
2.1.12 797 8/5/2022
2.1.11 1,804 7/22/2022
2.1.10 849 7/21/2022
2.1.9 982 7/14/2022
2.1.8 832 7/14/2022
2.1.7 846 7/7/2022
2.1.6 909 7/6/2022
2.1.5 962 6/20/2022
2.1.4 813 6/20/2022
2.1.3 820 6/19/2022
2.1.2 817 6/16/2022
2.1.1 800 6/16/2022
2.1.0 918 6/15/2022
2.0.2 851 6/9/2022
2.0.1 850 6/7/2022
2.0.0 796 6/5/2022
1.9.3 2,418 5/7/2022
1.9.2 937 5/4/2022
1.9.1 887 5/3/2022
1.9.0 875 5/3/2022
1.8.0 664 4/26/2022
1.7.3 686 4/24/2022
1.7.2 668 4/24/2022
1.7.1 649 4/24/2022
1.7.0 679 4/24/2022
1.6.5 539 4/23/2022
1.6.4 529 4/22/2022
1.6.3 1,370 3/30/2022
1.6.2 562 3/28/2022
1.6.1 545 3/27/2022
1.5.0 1,273 1/30/2022
1.4.1 457 1/16/2022
1.4.0 327 1/15/2022
1.3.0 334 1/14/2022
1.2.0 391 12/26/2021
1.1.0 341 12/22/2021
0.1.0 526 11/27/2022