dotnetconfig
- 463,640 total downloads
- last updated 7/30/2021
- Latest version: 1.0.6
APIs for handling dotnet-config compatible settings for any dotnet tool.
Usage:
var config = Config.Build();
var value = config.GetString("section", "subsection", "variable");
// Setting values, Config is immutable, so chain calls and update var
config = config
.SetString("section",...
More information
- 13,110 total downloads
- last updated 7/30/2021
- Latest version: 1.0.6
A global tool for managing hierarchical configurations for dotnet tools, using git config format.
Usage: dotnet config [options]
Location (uses all locations by default)
--local use .netconfig.user file
--global use global config file
--system...
More information