Skip to content

phirSOFT/SettingsService.Json

Repository files navigation

SettingsService Json Provider

Build Status Test Results Azure DevOps coverage Nuget License

This is a Settings backend for phirSOFT/SettingsService.

Nuget Nuget (with prereleases)

This package is listed in the official nuget.org feed. You can install the latest release version by typing

PM> Install-Package phirSOFT.SettingsService.Json

To retrieve development versions please add the development feed at https://phirsoft.pkgs.visualstudio.com/phirSOFT.SettingsService/_packaging/phirSOFT.SettingsServer/nuget/v3/index.json to your feed list or install the package directly from that feed.

PM> Install-Package phirSOFT.SettingsService.Json -Source https://phirsoft.pkgs.visualstudio.com/phirSOFT.SettingsService/_packaging/phirSOFT.SettingsServer/nuget/v3/index.json

Example

You can create easialy an instance of the JsonSettingsService

string path = "PathToSettingsFile.json"
ISettingsService settingsService = await JsonSettingsService.CreateAsync(path);