Toggly.FeatureManagement
2.7.0
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
<PackageReference Include="Toggly.FeatureManagement" Version="2.7.0" />
paket add Toggly.FeatureManagement --version 2.7.0
#r "nuget: Toggly.FeatureManagement, 2.7.0"
// 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 | Versions 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. net9.0 was computed. 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 | 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. |
-
.NETCoreApp 3.1
- Azure.Messaging.WebPubSub (>= 1.3.0)
- ConcurrentHashSet (>= 1.3.0)
- Google.Protobuf (>= 3.20.0)
- Grpc.Net.Client (>= 2.45.0)
- Grpc.Net.Client.Web (>= 2.45.0)
- Grpc.Net.ClientFactory (>= 2.45.0)
- Microsoft.Extensions.Hosting.Abstractions (>= 3.1.0)
- Microsoft.Extensions.Http (>= 6.0.0)
- Microsoft.Extensions.Http.Polly (>= 6.0.0)
- Microsoft.FeatureManagement (>= 2.5.1)
- System.Net.Http.Json (>= 5.0.0)
- Websocket.Client (>= 4.6.1)
-
.NETStandard 2.1
- Azure.Messaging.WebPubSub (>= 1.3.0)
- ConcurrentHashSet (>= 1.3.0)
- Google.Protobuf (>= 3.20.0)
- Grpc.Net.Client (>= 2.45.0)
- Grpc.Net.Client.Web (>= 2.45.0)
- Grpc.Net.ClientFactory (>= 2.45.0)
- Microsoft.Extensions.Hosting.Abstractions (>= 3.1.0)
- Microsoft.Extensions.Http (>= 6.0.0)
- Microsoft.Extensions.Http.Polly (>= 6.0.0)
- Microsoft.FeatureManagement (>= 2.5.1)
- System.Net.Http.Json (>= 5.0.0)
- Websocket.Client (>= 4.6.1)
-
net5.0
- Azure.Messaging.WebPubSub (>= 1.3.0)
- ConcurrentHashSet (>= 1.3.0)
- Google.Protobuf (>= 3.20.0)
- Grpc.Net.Client (>= 2.45.0)
- Grpc.Net.Client.Web (>= 2.45.0)
- Grpc.Net.ClientFactory (>= 2.45.0)
- Microsoft.Extensions.Hosting.Abstractions (>= 3.1.0)
- Microsoft.Extensions.Http (>= 6.0.0)
- Microsoft.Extensions.Http.Polly (>= 6.0.0)
- Microsoft.FeatureManagement (>= 2.5.1)
- System.Net.Http.Json (>= 5.0.0)
- Websocket.Client (>= 4.6.1)
-
net6.0
- Azure.Messaging.WebPubSub (>= 1.3.0)
- ConcurrentHashSet (>= 1.3.0)
- Google.Protobuf (>= 3.20.0)
- Grpc.Net.Client (>= 2.45.0)
- Grpc.Net.Client.Web (>= 2.45.0)
- Grpc.Net.ClientFactory (>= 2.45.0)
- Microsoft.Extensions.Hosting.Abstractions (>= 3.1.0)
- Microsoft.Extensions.Http (>= 6.0.0)
- Microsoft.Extensions.Http.Polly (>= 6.0.0)
- Microsoft.FeatureManagement (>= 2.5.1)
- System.Net.Http.Json (>= 5.0.0)
- Websocket.Client (>= 4.6.1)
-
net7.0
- Azure.Messaging.WebPubSub (>= 1.3.0)
- ConcurrentHashSet (>= 1.3.0)
- Google.Protobuf (>= 3.20.0)
- Grpc.Net.Client (>= 2.45.0)
- Grpc.Net.Client.Web (>= 2.45.0)
- Grpc.Net.ClientFactory (>= 2.45.0)
- Microsoft.Extensions.Hosting.Abstractions (>= 3.1.0)
- Microsoft.Extensions.Http (>= 6.0.0)
- Microsoft.Extensions.Http.Polly (>= 6.0.0)
- Microsoft.FeatureManagement (>= 2.5.1)
- System.Net.Http.Json (>= 5.0.0)
- Websocket.Client (>= 4.6.1)
NuGet packages (5)
Showing the top 5 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 |
|
Toggly.FeatureManagement.Storage.DistributedCache
Provides a DistributedCache implementation for feature snapshot storage. The application falls back to snapshot storage if it can't reach toggly.io |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.10.0 | 102 | 2/11/2025 |
2.9.0 | 142 | 1/29/2025 |
2.8.2 | 1,514 | 9/23/2024 |
2.8.1 | 2,524 | 5/30/2024 |
2.8.0 | 243 | 5/29/2024 |
2.7.6 | 273 | 5/28/2024 |
2.7.5 | 2,858 | 1/22/2024 |
2.7.4 | 1,215 | 11/27/2023 |
2.7.3 | 3,765 | 5/3/2023 |
2.7.2 | 1,967 | 3/3/2023 |
2.7.1 | 685 | 3/3/2023 |
2.7.0 | 696 | 3/3/2023 |
2.6.1 | 622 | 2/27/2023 |
2.6.0 | 1,019 | 2/13/2023 |
2.5.5 | 800 | 2/10/2023 |
2.5.4 | 1,093 | 2/5/2023 |
2.5.3 | 683 | 2/5/2023 |
2.5.2 | 784 | 1/31/2023 |
2.5.1 | 702 | 1/30/2023 |
2.5.0 | 701 | 1/30/2023 |
2.4.1 | 694 | 1/12/2023 |
2.4.0 | 700 | 1/9/2023 |
2.3.0 | 646 | 1/8/2023 |
2.2.11 | 672 | 1/4/2023 |
2.2.10 | 675 | 1/4/2023 |
2.2.9 | 661 | 1/4/2023 |
2.2.8 | 302 | 1/4/2023 |
2.2.7 | 306 | 1/4/2023 |
2.2.6 | 310 | 1/4/2023 |
2.2.5 | 689 | 1/4/2023 |
2.2.4 | 733 | 12/31/2022 |
2.2.3 | 1,063 | 12/29/2022 |
2.2.2 | 679 | 12/29/2022 |
2.2.1 | 687 | 12/29/2022 |
2.2.0 | 649 | 12/28/2022 |
2.1.19 | 625 | 11/29/2022 |
2.1.18 | 663 | 11/27/2022 |
2.1.17 | 575 | 11/27/2022 |
2.1.16 | 638 | 11/14/2022 |
2.1.15 | 2,563 | 8/19/2022 |
2.1.14 | 1,075 | 8/7/2022 |
2.1.13 | 849 | 8/7/2022 |
2.1.12 | 852 | 8/5/2022 |
2.1.11 | 1,867 | 7/22/2022 |
2.1.10 | 900 | 7/21/2022 |
2.1.9 | 1,027 | 7/14/2022 |
2.1.8 | 901 | 7/14/2022 |
2.1.7 | 901 | 7/7/2022 |
2.1.6 | 955 | 7/6/2022 |
2.1.5 | 1,020 | 6/20/2022 |
2.1.4 | 854 | 6/20/2022 |
2.1.3 | 879 | 6/19/2022 |
2.1.2 | 874 | 6/16/2022 |
2.1.1 | 854 | 6/16/2022 |
2.1.0 | 976 | 6/15/2022 |
2.0.2 | 920 | 6/9/2022 |
2.0.1 | 892 | 6/7/2022 |
2.0.0 | 842 | 6/5/2022 |
1.9.3 | 2,470 | 5/7/2022 |
1.9.2 | 977 | 5/4/2022 |
1.9.1 | 940 | 5/3/2022 |
1.9.0 | 932 | 5/3/2022 |
1.8.0 | 708 | 4/26/2022 |
1.7.3 | 736 | 4/24/2022 |
1.7.2 | 708 | 4/24/2022 |
1.7.1 | 697 | 4/24/2022 |
1.7.0 | 728 | 4/24/2022 |
1.6.5 | 576 | 4/23/2022 |
1.6.4 | 575 | 4/22/2022 |
1.6.3 | 1,417 | 3/30/2022 |
1.6.2 | 605 | 3/28/2022 |
1.6.1 | 574 | 3/27/2022 |
1.5.0 | 1,313 | 1/30/2022 |
1.4.1 | 499 | 1/16/2022 |
1.4.0 | 357 | 1/15/2022 |
1.3.0 | 378 | 1/14/2022 |
1.2.0 | 438 | 12/26/2021 |
1.1.0 | 387 | 12/22/2021 |
0.1.0 | 582 | 11/27/2022 |