FeatureSwitching 1.0.2
Simple helper module for reading/writing feature switches in the web.config of a ASP web application
Install-Package FeatureSwitching -Version 1.0.2
dotnet add package FeatureSwitching --version 1.0.2
<PackageReference Include="FeatureSwitching" Version="1.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add FeatureSwitching --version 1.0.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Feature Switching
Simple helper module for reading/writing feature switches in the web.config of
a ASP web application. Feature switches are expected to have this format:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="featureSwitches" type="System.Configuration.AppSettingsSection, System.Configuration, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
</configSections>
<featureSwitches>
<add key="AwesomeFeature1" value="true" />
<add key="AwesomeFeature2" value="true" />
<add key="NotAwesomeFeature" value="false" />
</featureSwitches>
</configuration>
Feature Switching
Simple helper module for reading/writing feature switches in the web.config of
a ASP web application. Feature switches are expected to have this format:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="featureSwitches" type="System.Configuration.AppSettingsSection, System.Configuration, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
</configSections>
<featureSwitches>
<add key="AwesomeFeature1" value="true" />
<add key="AwesomeFeature2" value="true" />
<add key="NotAwesomeFeature" value="false" />
</featureSwitches>
</configuration>
Dependencies
This package has no dependencies.
Used By
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version History
Version | Downloads | Last updated |
---|---|---|
1.0.2 | 5,364 | 12/13/2017 |